Searched defs:printing (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintJob.java88 private boolean printing = false; field in class:Win32PrintJob
113 /* buffer length for printing raw data */
304 if (printing) {
305 throw new PrintException("already printing");
307 printing = true;
500 throw new PrintException("already printing");
558 throw new PrintException("already printing");
739 if (!printing) {
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintJob.java75 private boolean printing = false; field in class:PSStreamPrintJob
268 if (printing) {
269 throw new PrintException("already printing");
271 printing = true;
358 throw new PrintException("already printing");
396 throw new PrintException("already printing");
540 if (!printing) {
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java97 private boolean printing = false; field in class:UnixPrintJob
306 if (printing) {
307 throw new PrintException("already printing");
309 printing = true;
616 throw new PrintException("already printing");
655 throw new PrintException("already printing");
1007 // REMIND : 2d printing throws PrinterException
1022 if (!printing) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DContainer.java163 // keeps track of the threads that are printing this component
165 // True if there is at least one thread that's printing this component
166 private transient boolean printing = false; field in class:Container
1954 if (printing) {
2012 printing = true;
2018 printing = !printingThreads.isEmpty();
2041 * Simulates the peer callbacks into java.awt for printing of
2043 * @param g the graphics context to use for printing.
2077 * Simulates the peer callbacks into java.awt for printing of
2079 * @param g the graphics context to use for printing
[all...]

Completed in 42 milliseconds