< prev index next >

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

Print this page

        

*** 40,50 **** * Print Service instance automatically maps the client-specified job priority * value to one of the supported job priority levels, dividing the 100 job * priority values equally among the available job priority levels. * <P> * <B>IPP Compatibility:</B> The integer value gives the IPP integer value. ! * The category name returned by <CODE>getName()</CODE> gives the IPP * attribute name. * * @author Alan Kaminsky */ public final class JobPrioritySupported extends IntegerSyntax --- 40,50 ---- * Print Service instance automatically maps the client-specified job priority * value to one of the supported job priority levels, dividing the 100 job * priority values equally among the available job priority levels. * <P> * <B>IPP Compatibility:</B> The integer value gives the IPP integer value. ! * The category name returned by {@code getName()} gives the IPP * attribute name. * * @author Alan Kaminsky */ public final class JobPrioritySupported extends IntegerSyntax
*** 58,68 **** * value. * * @param value Number of different job priority levels supported. * * @exception IllegalArgumentException ! * (Unchecked exception) Thrown if <CODE>value</CODE> is less than 1 * or greater than 100. */ public JobPrioritySupported(int value) { super (value, 1, 100); } --- 58,68 ---- * value. * * @param value Number of different job priority levels supported. * * @exception IllegalArgumentException ! * (Unchecked exception) Thrown if {@code value} is less than 1 * or greater than 100. */ public JobPrioritySupported(int value) { super (value, 1, 100); }
*** 71,91 **** * Returns whether this job priority supported attribute is equivalent to * the passed in object. To be equivalent, all of the following conditions * must be true: * <OL TYPE=1> * <LI> ! * <CODE>object</CODE> is not null. * <LI> ! * <CODE>object</CODE> is an instance of class JobPrioritySupported. * <LI> * This job priority supported attribute's value and ! * <CODE>object</CODE>'s value are equal. * </OL> * * @param object Object to compare to. * ! * @return True if <CODE>object</CODE> is equivalent to this job * priority supported attribute, false otherwise. */ public boolean equals (Object object) { return (super.equals(object) && --- 71,91 ---- * Returns whether this job priority supported attribute is equivalent to * the passed in object. To be equivalent, all of the following conditions * must be true: * <OL TYPE=1> * <LI> ! * {@code object} is not null. * <LI> ! * {@code object} is an instance of class JobPrioritySupported. * <LI> * This job priority supported attribute's value and ! * {@code object}'s value are equal. * </OL> * * @param object Object to compare to. * ! * @return True if {@code object} is equivalent to this job * priority supported attribute, false otherwise. */ public boolean equals (Object object) { return (super.equals(object) &&
*** 110,120 **** /** * Get the name of the category of which this attribute value is an * instance. * <P> * For class JobPrioritySupported, the ! * category name is <CODE>"job-priority-supported"</CODE>. * * @return Attribute category name. */ public final String getName() { return "job-priority-supported"; --- 110,120 ---- /** * Get the name of the category of which this attribute value is an * instance. * <P> * For class JobPrioritySupported, the ! * category name is {@code "job-priority-supported"}. * * @return Attribute category name. */ public final String getName() { return "job-priority-supported";
< prev index next >