Searched defs:firstPage (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterJob.java209 * the end of the document. Note that firstPage
213 int firstPage = getFirstPage();
242 if (printLoop(false, firstPage, lastPage)) {
261 printLoop(true, firstPage, lastPage);
267 firstPage = prMembers[loopi][0]-1;
487 private native boolean printLoop(boolean waitUntilDone, int firstPage, int lastPage) throws PrinterException; argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DRasterPrinterJob.java1378 * the end of the document. Note that firstPage
1386 int firstPage = getFirstPage();
1436 for(int i = firstPage, pageResult = Printable.PAGE_EXISTS;
1677 * Both 'firstPage' and 'lastPage' are zero based
1682 protected void setPageRange(int firstPage, int lastPage) { argument
1683 if(firstPage >= 0 && lastPage >= 0) {
1684 mFirstPage = firstPage;

Completed in 38 milliseconds