< prev index next >

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

Print this page

        

*** 210,221 **** * </UL> * <P> * <B>IPP Compatibility:</B> Class Finishings encapsulates some of the * IPP enum values that can be included in an IPP "finishings" attribute, which * is a set of enums. 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. * In IPP Finishings is a multi-value attribute, this API currently allows * only one binding to be specified. * * @author Alan Kaminsky --- 210,221 ---- * </UL> * <P> * <B>IPP Compatibility:</B> Class Finishings encapsulates some of the * IPP enum values that can be included in an IPP "finishings" attribute, which * is a set of enums. 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. * In IPP Finishings is a multi-value attribute, this API currently allows * only one binding to be specified. * * @author Alan Kaminsky
*** 464,474 **** /** * Get the name of the category of which this attribute value is an * instance. * <P> * For class Finishings and any vendor-defined subclasses, the ! * category name is <CODE>"finishings"</CODE>. * * @return Attribute category name. */ public final String getName() { return "finishings"; --- 464,474 ---- /** * Get the name of the category of which this attribute value is an * instance. * <P> * For class Finishings and any vendor-defined subclasses, the ! * category name is {@code "finishings"}. * * @return Attribute category name. */ public final String getName() { return "finishings";
< prev index next >