- java.lang.Object
-
- java.awt.print.Book
-
- All Implemented Interfaces:
- Pageable
public class Book extends Object implements Pageable
TheBook
class provides a representation of a document in which pages may have different page formats and page painters. This class uses thePageable
interface to interact with aPrinterJob
.- See Also:
Pageable
,PrinterJob
-
-
Field Summary
-
Fields inherited from interface java.awt.print.Pageable
UNKNOWN_NUMBER_OF_PAGES
-
-
Constructor Summary
Constructors Constructor and Description Book()
Creates a new, emptyBook
.
-
Method Summary
Methods Modifier and Type Method and Description void
append(Printable painter, PageFormat page)
Appends a single page to the end of thisBook
.void
append(Printable painter, PageFormat page, int numPages)
AppendsnumPages
pages to the end of thisBook
.int
getNumberOfPages()
Returns the number of pages in thisBook
.PageFormat
getPageFormat(int pageIndex)
Returns thePageFormat
of the page specified bypageIndex
.Printable
getPrintable(int pageIndex)
Returns thePrintable
instance responsible for rendering the page specified bypageIndex
.void
setPage(int pageIndex, Printable painter, PageFormat page)
Sets thePageFormat
and thePainter
for a specified page number.
-
-
-
Method Detail
-
getNumberOfPages
public int getNumberOfPages()
Returns the number of pages in thisBook
.- Specified by:
getNumberOfPages
in interfacePageable
- Returns:
- the number of pages this
Book
contains.
-
getPageFormat
public PageFormat getPageFormat(int pageIndex) throws IndexOutOfBoundsException
Returns thePageFormat
of the page specified bypageIndex
.- Specified by:
getPageFormat
in interfacePageable
- Parameters:
pageIndex
- the zero based index of the page whosePageFormat
is being requested- Returns:
- the
PageFormat
describing the size and orientation of the page. - Throws:
IndexOutOfBoundsException
- if thePageable
does not contain the requested page
-
getPrintable
public Printable getPrintable(int pageIndex) throws IndexOutOfBoundsException
Returns thePrintable
instance responsible for rendering the page specified bypageIndex
.- Specified by:
getPrintable
in interfacePageable
- Parameters:
pageIndex
- the zero based index of the page whosePrintable
is being requested- Returns:
- the
Printable
that renders the page. - Throws:
IndexOutOfBoundsException
- if thePageable
does not contain the requested page
-
setPage
public void setPage(int pageIndex, Printable painter, PageFormat page) throws IndexOutOfBoundsException
Sets thePageFormat
and thePainter
for a specified page number.- Parameters:
pageIndex
- the zero based index of the page whose painter and format is alteredpainter
- thePrintable
instance that renders the pagepage
- the size and orientation of the page- Throws:
IndexOutOfBoundsException
- if the specified page is not already in thisBook
NullPointerException
- if thepainter
orpage
argument isnull
-
append
public void append(Printable painter, PageFormat page)
Appends a single page to the end of thisBook
.- Parameters:
painter
- thePrintable
instance that renders the pagepage
- the size and orientation of the page- Throws:
- If theNullPointerException
painter
orpage
argument isnull
-
append
public void append(Printable painter, PageFormat page, int numPages)
AppendsnumPages
pages to the end of thisBook
. Each of the pages is associated withpage
.- Parameters:
painter
- thePrintable
instance that renders the pagepage
- the size and orientation of the pagenumPages
- the number of pages to be added to the thisBook
.- Throws:
- If theNullPointerException
painter
orpage
argument isnull
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 13:24:37 Cette version de la page est en cache (à la date du 05/11/2024 13:24:37) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 29/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/print/book.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.