Searched defs:job (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/test/java/awt/print/PageFormat/
H A DPageFormatFromAttributes.java38 PrinterJob job = PrinterJob.getPrinterJob();
39 PrintService service = job.getPrintService();
44 test(job, MediaSizeName.ISO_A4, OrientationRequested.PORTRAIT);
45 test(job, MediaSizeName.ISO_A4, OrientationRequested.LANDSCAPE);
46 test(job, MediaSizeName.ISO_A4,
48 test(job, MediaSizeName.ISO_A3, OrientationRequested.PORTRAIT);
49 test(job, MediaSizeName.NA_LETTER, OrientationRequested.PORTRAIT);
50 test(job, MediaSizeName.NA_LETTER, OrientationRequested.LANDSCAPE);
51 test(job, MediaSizeName.NA_LEGAL, OrientationRequested.PORTRAIT);
54 static void test(PrinterJob job, argument
[all...]
/openjdk7/langtools/test/com/sun/javadoc/testTypeParams/pkg/
H A DC.java41 public static void formatDetails(Collection<Map<String,String>> job, argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrintDialog.java38 protected PrintJob job; field in class:WPrintDialog
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DTab.java83 public synchronized void workerAdd(Runnable job) { argument
88 worker.add(job);
H A DWorker.java42 Runnable job;
53 job = jobs.remove(0);
55 job.run();
70 public void add(Runnable job) { argument
72 jobs.add(job);
/openjdk7/jdk/test/javax/management/notification/
H A DNotifExecutorTest.java179 public synchronized void execute(Runnable job) { argument
184 super.execute(job);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DPrintingStatus.java42 * of the printing job and provides a way to abort it
55 private final PrinterJob job; field in class:PrintingStatus
78 job.cancel();
94 * @param job a <code>PrinterJob</code> object to be cancelled
99 createPrintingStatus(Component parent, PrinterJob job) { argument
100 return new PrintingStatus(parent, job);
103 protected PrintingStatus(Component parent, PrinterJob job) { argument
104 this.job = job;
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintJob.java92 private PrinterJob job; field in class:Win32PrintJob
110 /* print job handle used by native code */
127 /* just return an empty set until the job is submitted */
163 * to get a reference in order to close it because the job failed.
327 throw new PrintException("Printer is not accepting job.");
463 throw new PrintException("Print job failed to start.");
480 throw new PrintException("Print job failed to close properly.");
499 if (job != null) { // shouldn't happen
502 job = new sun.awt.windows.WPrinterJob();
506 job
[all...]
/openjdk7/jdk/test/java/awt/print/PrinterJob/ImagePrinting/
H A DClippedImages.java192 void setPrinterJob(PrinterJob job, boolean pageable) { argument
193 this.myPrinterJob = job;
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintJob.java79 private PrinterJob job; field in class:PSStreamPrintJob
105 /* just return an empty set until the job is submitted */
140 * to get a reference in order to close it because the job failed.
357 if (job != null) { // shouldn't happen
360 job = new PSPrinterJob();
363 job.setPrintService(getPrintService());
378 job.setPrintable(printable, pf);
379 job.print(attributes);
395 if (job != null) { // shouldn't happen
398 job
[all...]
H A DPSPrinterJob.java106 * A class which initiates and executes a PostScript printer job.
417 * print job interactively.
1007 * print job to the printer's control language
1013 * causes the print job to be rasterized.
2166 private PSPrinterJob job; field in class:PSPrinterJob.EPSPrinter
2204 job = new PSPrinterJob();
2205 job.epsPrinter = this; // modifies the behaviour of PSPrinterJob
2206 job.mPSStream = stream;
2207 job.mDestType = RasterPrinterJob.STREAM; // prevents closure
2209 job
[all...]
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java101 private PrinterJob job; field in class:UnixPrintJob
133 /* just return an empty set until the job is submitted */
169 * to get a reference in order to close it because the job failed.
316 throw new PrintException("Printer is not accepting job.");
467 * CUPS) and at that time the job will be spooled via IPP
615 if (job != null) { // shouldn't happen
618 job = new PSPrinterJob();
621 job.setPrintService(getPrintService());
622 job.setCopies(copies);
623 job
[all...]

Completed in 79 milliseconds