Searched refs:JobName (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DJobName.java35 * Class JobName is a printing attribute class, a text attribute, that specifies
38 * JobName attribute is set to the value supplied by the client in the Print
39 * Request's attribute set. If, however, the client does not supply a JobName
41 * must generate a JobName. The printer should generate the value of the Print
42 * Job's JobName attribute from the first of the following sources that produces
55 public final class JobName extends TextSyntax class in inherits:TextSyntax,PrintRequestAttribute,PrintJobAttribute
71 public JobName(String jobName, Locale locale) { method in class:JobName
82 * <CODE>object</CODE> is an instance of class JobName.
97 return (super.equals(object) && object instanceof JobName);
104 * For class JobName, th
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintJob.java57 import javax.print.attribute.standard.JobName;
470 if (jobAttrSet.get(JobName.class) == null) {
471 JobName jobName;
475 jobName = new JobName(docName.getValue(), docName.getLocale());
486 jobName = new JobName(str, null);
521 if (category == JobName.class) {
522 jobName = ((JobName)attr).getValue();
H A DPSStreamPrintService.java46 import javax.print.attribute.standard.JobName;
69 JobName.class,
277 } else if (category == JobName.class) {
278 return new JobName("", null);
H A DPrintJob2D.java63 import javax.print.attribute.standard.JobName;
446 JobName jname = (JobName)attributes.get(JobName.class);
628 attributes.add(new JobName(docTitle, null));
H A DRasterPrinterJob.java81 import javax.print.attribute.standard.JobName;
932 attributes.add(new JobName(getJobName(), null));
935 JobName jobName = (JobName)attributes.get(JobName.class);
1131 JobName jobName = (JobName)attributes.get(JobName.class);
H A DPSPrinterJob.java66 import javax.print.attribute.standard.JobName;
434 attributes.add(new JobName(getJobName(), null));
451 JobName jobName = (JobName)attributes.get(JobName.class);
H A DServiceDialog.java2243 * PrintQuality, JobPriority, JobName, and other related job attributes.
2680 asCurrent.add(new JobName(tfJobName.getText(),
2693 Class jnCategory = JobName.class;
2733 // setup JobName text field
2737 JobName jn = (JobName)asCurrent.get(jnCategory);
2739 jn = (JobName)psCurrent.getDefaultAttributeValue(jnCategory);
2741 jn = new JobName("", Locale.getDefault());
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintJob.java65 import javax.print.attribute.standard.JobName;
640 if (jobAttrSet.get(JobName.class) == null) {
641 JobName jobName;
645 jobName = new JobName(docName.getValue(), docName.getLocale());
656 jobName = new JobName(str, null);
711 } else if (category == JobName.class) {
712 jobName = ((JobName)attr).getValue();
H A DWin32PrintService.java48 import javax.print.attribute.standard.JobName;
107 JobName.class,
1079 } else if (category == JobName.class) {
1080 return new JobName("Java Printing", null);
1263 if (category == JobName.class) {
1264 return new JobName("Java Printing", null);
/openjdk7/jdk/test/javax/print/
H A DStreamPrintingOrientation.java82 prSet.add(new JobName("orientation test", null));
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java72 import javax.print.attribute.standard.JobName;
731 if (jobAttrSet.get(JobName.class) == null) {
732 JobName jobName;
736 jobName = new JobName(docName.getValue(), docName.getLocale());
747 jobName = new JobName(str, null);
808 } else if (category == JobName.class) {
809 jobName = ((JobName)attr).getValue();
H A DUnixPrintService.java48 import javax.print.attribute.standard.JobName;
164 JobName.class,
602 } else if (category == JobName.class) {
603 return new JobName("Java Printing", null);
706 } else if (category == JobName.class) {
707 return new JobName("Java Printing", null);
H A DIPPPrintService.java151 new JobName("", Locale.getDefault()),
567 } else if (category == JobName.class) {
568 return new JobName("Java Printing", null);
1403 } else if (category == JobName.class) {
1404 return new JobName("Java Printing", null);

Completed in 72 milliseconds