Searched refs:DocumentName (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DDocumentName.java34 * Class DocumentName is a printing attribute class, a text attribute, that
35 * specifies the name of a document. DocumentName is an attribute of the print
38 * However if a JobName is not specified, the DocumentName should be used
39 * instead, which implies that supporting specification of DocumentName
50 public final class DocumentName extends TextSyntax implements DocAttribute { class in inherits:TextSyntax,DocAttribute
66 public DocumentName(String documentName, Locale locale) { method in class:DocumentName
78 * <CODE>object</CODE> is an instance of class DocumentName.
93 return (super.equals (object) && object instanceof DocumentName);
100 * For class DocumentName, the category is class DocumentName itsel
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintJob.java55 import javax.print.attribute.standard.DocumentName;
472 if (docSet != null && docSet.get(DocumentName.class) != null) {
473 DocumentName docName =
474 (DocumentName)docSet.get(DocumentName.class);
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintJob.java63 import javax.print.attribute.standard.DocumentName;
642 if (docSet != null && docSet.get(DocumentName.class) != null) {
643 DocumentName docName =
644 (DocumentName)docSet.get(DocumentName.class);
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java70 import javax.print.attribute.standard.DocumentName;
733 if (docSet != null && docSet.get(DocumentName.class) != null) {
734 DocumentName docName =
735 (DocumentName)docSet.get(DocumentName.class);

Completed in 30 milliseconds