< prev index next >
src/java.desktop/share/classes/javax/print/attribute/standard/JobPriority.java
Print this page
*** 50,60 ****
* 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 JobPriority extends IntegerSyntax
--- 50,60 ----
* 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 JobPriority extends IntegerSyntax
*** 66,76 ****
* Construct a new job priority attribute with the given integer value.
*
* @param value Integer value.
*
* @exception IllegalArgumentException
! * (Unchecked exception) Thrown if <CODE>value</CODE> is less than 1
* or greater than 100.
*/
public JobPriority(int value) {
super (value, 1, 100);
}
--- 66,76 ----
* Construct a new job priority attribute with the given integer value.
*
* @param value Integer value.
*
* @exception IllegalArgumentException
! * (Unchecked exception) Thrown if {@code value} is less than 1
* or greater than 100.
*/
public JobPriority(int value) {
super (value, 1, 100);
}
*** 79,99 ****
* Returns whether this job priority 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 JobPriority.
* <LI>
! * This job priority 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 attribute, false otherwise.
*/
public boolean equals(Object object) {
return (super.equals (object) && object instanceof JobPriority);
}
--- 79,99 ----
* Returns whether this job priority 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 JobPriority.
* <LI>
! * This job priority 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 attribute, false otherwise.
*/
public boolean equals(Object object) {
return (super.equals (object) && object instanceof JobPriority);
}
*** 113,123 ****
/**
* Get the name of the category of which this attribute value is an
* instance.
* <P>
! * For class JobPriority, the category name is <CODE>"job-priority"</CODE>.
*
* @return Attribute category name.
*/
public final String getName() {
return "job-priority";
--- 113,123 ----
/**
* Get the name of the category of which this attribute value is an
* instance.
* <P>
! * For class JobPriority, the category name is {@code "job-priority"}.
*
* @return Attribute category name.
*/
public final String getName() {
return "job-priority";
< prev index next >