Searched refs:PrintQualityType (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DPageAttributes.java868 public static final class PrintQualityType extends AttributeValue { class in class:PageAttributes
878 * The PrintQualityType instance to use for specifying a high print
881 public static final PrintQualityType HIGH =
882 new PrintQualityType(I_HIGH);
884 * The PrintQualityType instance to use for specifying a normal print
887 public static final PrintQualityType NORMAL =
888 new PrintQualityType(I_NORMAL);
890 * The PrintQualityType instance to use for specifying a draft print
893 public static final PrintQualityType DRAFT =
894 new PrintQualityType(I_DRAF
896 private PrintQualityType(int type) { method in class:PageAttributes.PrintQualityType
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrintJob2D.java566 pageAttributes.setPrintQuality(PrintQualityType.DRAFT);
568 pageAttributes.setPrintQuality(PrintQualityType.HIGH);
570 pageAttributes.setPrintQuality(PrintQualityType.NORMAL);
736 PrintQualityType qType =
738 if (qType == PrintQualityType.DRAFT) {
740 } else if (qType == PrintQualityType.NORMAL) {
742 } else if (qType == PrintQualityType.HIGH) {

Completed in 35 milliseconds