Class Book
java.lang.Object
java.awt.print.Book
- All Implemented Interfaces:
- Pageable
The 
Book class provides a representation of a document in
 which pages may have different page formats and page painters. This
 class uses the Pageable interface to interact with a
 PrinterJob.- See Also:
- 
Field SummaryFields declared in interface java.awt.print.PageableUNKNOWN_NUMBER_OF_PAGES
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidappend(Printable painter, PageFormat page) Appends a single page to the end of thisBook.voidappend(Printable painter, PageFormat page, int numPages) AppendsnumPagespages to the end of thisBook.intReturns the number of pages in thisBook.getPageFormat(int pageIndex) Returns thePageFormatof the page specified bypageIndex.getPrintable(int pageIndex) Returns thePrintableinstance responsible for rendering the page specified bypageIndex.voidsetPage(int pageIndex, Printable painter, PageFormat page) Sets thePageFormatand thePainterfor a specified page number.
- 
Constructor Details- 
Bookpublic Book()Creates a new, emptyBook.
 
- 
- 
Method Details- 
getNumberOfPagespublic int getNumberOfPages()Returns the number of pages in thisBook.- Specified by:
- getNumberOfPagesin interface- Pageable
- Returns:
- the number of pages this Bookcontains.
 
- 
getPageFormatReturns thePageFormatof the page specified bypageIndex.- Specified by:
- getPageFormatin interface- Pageable
- Parameters:
- pageIndex- the zero based index of the page whose- PageFormatis being requested
- Returns:
- the PageFormatdescribing the size and orientation of the page.
- Throws:
- IndexOutOfBoundsException- if the- Pageabledoes not contain the requested page
 
- 
getPrintableReturns thePrintableinstance responsible for rendering the page specified bypageIndex.- Specified by:
- getPrintablein interface- Pageable
- Parameters:
- pageIndex- the zero based index of the page whose- Printableis being requested
- Returns:
- the Printablethat renders the page.
- Throws:
- IndexOutOfBoundsException- if the- Pageabledoes not contain the requested page
 
- 
setPagepublic void setPage(int pageIndex, Printable painter, PageFormat page) throws IndexOutOfBoundsException Sets thePageFormatand thePainterfor a specified page number.- Parameters:
- pageIndex- the zero based index of the page whose painter and format is altered
- painter- the- Printableinstance that renders the page
- page- the size and orientation of the page
- Throws:
- IndexOutOfBoundsException- if the specified page is not already in this- Book
- NullPointerException- if the- painteror- pageargument is- null
 
- 
appendAppends a single page to the end of thisBook.- Parameters:
- painter- the- Printableinstance that renders the page
- page- the size and orientation of the page
- Throws:
- NullPointerException- If the- painteror- pageargument is- null
 
- 
appendAppendsnumPagespages to the end of thisBook. Each of the pages is associated withpage.- Parameters:
- painter- the- Printableinstance that renders the page
- page- the size and orientation of the page
- numPages- the number of pages to be added to the this- Book.
- Throws:
- NullPointerException- If the- painteror- pageargument is- null
 
 
-