< prev index next >

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

Print this page

        

@@ -50,11 +50,11 @@
  * 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
+ * category name returned by {@code getName()} gives the IPP attribute
  * name.
  *
  * @author  Alan Kaminsky
  */
 public final class JobPriority extends IntegerSyntax

@@ -66,11 +66,11 @@
      * 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
+     *     (Unchecked exception) Thrown if {@code value} is less than 1
      *     or greater than 100.
      */
     public JobPriority(int value) {
         super (value, 1, 100);
     }

@@ -79,21 +79,21 @@
      * 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.
+     * {@code object} is not null.
      * <LI>
-     * <CODE>object</CODE> is an instance of class JobPriority.
+     * {@code object} is an instance of class JobPriority.
      * <LI>
-     * This job priority attribute's value and <CODE>object</CODE>'s value
+     * 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</CODE> is equivalent to this job
+     * @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,11 +113,11 @@
 
     /**
      * 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>.
+     * For class JobPriority, the category name is {@code "job-priority"}.
      *
      * @return  Attribute category name.
      */
     public final String getName() {
         return "job-priority";
< prev index next >