< prev index next >

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

Print this page

        

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

@@ -58,11 +58,11 @@
      * value.
      *
      * @param  value  Number of different job priority levels supported.
      *
      * @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 JobPrioritySupported(int value) {
         super (value, 1, 100);
     }

@@ -71,21 +71,21 @@
      * 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.
+     * {@code object} is not null.
      * <LI>
-     * <CODE>object</CODE> is an instance of class JobPrioritySupported.
+     * {@code object} is an instance of class JobPrioritySupported.
      * <LI>
      * This job priority supported attribute's value and
-     * <CODE>object</CODE>'s value are equal.
+     * {@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 supported attribute, false otherwise.
      */
     public boolean equals (Object object) {
 
         return (super.equals(object) &&

@@ -110,11 +110,11 @@
     /**
      * 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>.
+     * category name is {@code "job-priority-supported"}.
      *
      * @return  Attribute category name.
      */
     public final String getName() {
         return "job-priority-supported";
< prev index next >