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 Summary
Fields declared in interface Pageable
UNKNOWN_NUMBER_OF_PAGESModifier and TypeFieldDescriptionstatic final intThis constant is returned from thegetNumberOfPagesmethod if aPageableimplementation does not know the number of pages in its set. -
Constructor Summary
Constructors -
Method Summary
Modifier 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.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
Book
public Book()Creates a new, emptyBook.
-
-
Method Details
-
getNumberOfPages
public int getNumberOfPages()Returns the number of pages in thisBook.- Specified by:
getNumberOfPagesin interfacePageable- Returns:
- the number of pages this
Bookcontains.
-
getPageFormat
Returns thePageFormatof the page specified bypageIndex.- Specified by:
getPageFormatin interfacePageable- Parameters:
pageIndex- the zero based index of the page whosePageFormatis being requested- Returns:
- the
PageFormatdescribing the size and orientation of the page. - Throws:
IndexOutOfBoundsException- if thePageabledoes not contain the requested page
-
getPrintable
Returns thePrintableinstance responsible for rendering the page specified bypageIndex.- Specified by:
getPrintablein interfacePageable- Parameters:
pageIndex- the zero based index of the page whosePrintableis being requested- Returns:
- the
Printablethat renders the page. - Throws:
IndexOutOfBoundsException- if thePageabledoes not contain the requested page
-
setPage
public 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 alteredpainter- thePrintableinstance that renders the pagepage- the size and orientation of the page- Throws:
IndexOutOfBoundsException- if the specified page is not already in thisBookNullPointerException- if thepainterorpageargument isnull
-
append
Appends a single page to the end of thisBook.- Parameters:
painter- thePrintableinstance that renders the pagepage- the size and orientation of the page- Throws:
NullPointerException- If thepainterorpageargument isnull
-
append
AppendsnumPagespages to the end of thisBook. Each of the pages is associated withpage.- Parameters:
painter- thePrintableinstance that renders the pagepage- the size and orientation of the pagenumPages- the number of pages to be added to the thisBook.- Throws:
NullPointerException- If thepainterorpageargument isnull
-