< prev index next >

src/java.desktop/share/classes/javax/print/attribute/standard/PrintQuality.java

Print this page

        

*** 33,44 **** /** * Class PrintQuality is a printing attribute class, an enumeration, * that specifies the print quality that the printer uses for the job. * <P> * <B>IPP Compatibility:</B> The category name returned by ! * <CODE>getName()</CODE> is the IPP attribute name. The enumeration's ! * integer value is the IPP enum value. The <code>toString()</code> method * returns the IPP string representation of the attribute value. * * @author David Mendenhall * @author Alan Kaminsky */ --- 33,44 ---- /** * Class PrintQuality is a printing attribute class, an enumeration, * that specifies the print quality that the printer uses for the job. * <P> * <B>IPP Compatibility:</B> The category name returned by ! * {@code getName()} is the IPP attribute name. The enumeration's ! * integer value is the IPP enum value. The {@code toString()} method * returns the IPP string representation of the attribute value. * * @author David Mendenhall * @author Alan Kaminsky */
*** 121,131 **** /** * Get the name of the category of which this attribute value is an * instance. * <P> * For class PrintQuality and any vendor-defined subclasses, the category ! * name is <CODE>"print-quality"</CODE>. * * @return Attribute category name. */ public final String getName() { return "print-quality"; --- 121,131 ---- /** * Get the name of the category of which this attribute value is an * instance. * <P> * For class PrintQuality and any vendor-defined subclasses, the category ! * name is {@code "print-quality"}. * * @return Attribute category name. */ public final String getName() { return "print-quality";
< prev index next >