diff -r d69b38870195 -r ed476aba94de jdk/src/java.desktop/share/classes/javax/print/attribute/standard/JobImpressions.java --- a/jdk/src/java.desktop/share/classes/javax/print/attribute/standard/JobImpressions.java Mon Jan 11 06:10:32 2016 -0800 +++ b/jdk/src/java.desktop/share/classes/javax/print/attribute/standard/JobImpressions.java Mon Jan 11 17:51:54 2016 +0300 @@ -63,7 +63,7 @@ * than a measure of the number of impressions to be produced by the job. *

* IPP Compatibility: The integer value gives the IPP integer value. The - * category name returned by getName() gives the IPP attribute + * category name returned by {@code getName()} gives the IPP attribute * name. * * @see JobImpressionsSupported @@ -85,7 +85,7 @@ * @param value Integer value. * * @exception IllegalArgumentException - * (Unchecked exception) Thrown if value is less than 0. + * (Unchecked exception) Thrown if {@code value} is less than 0. */ public JobImpressions(int value) { super(value, 0, Integer.MAX_VALUE); @@ -97,17 +97,17 @@ * be true: *

    *
  1. - * object is not null. + * {@code object} is not null. *
  2. - * object is an instance of class JobImpressions. + * {@code object} is an instance of class JobImpressions. *
  3. - * This job impressions attribute's value and object's value + * This job impressions attribute's value and {@code object}'s value * are equal. *
* * @param object Object to compare to. * - * @return True if object is equivalent to this job + * @return True if {@code object} is equivalent to this job * impressions attribute, false otherwise. */ public boolean equals(Object object) { @@ -132,7 +132,7 @@ * instance. *

* For class JobImpressions, the category name is - * "job-impressions". + * {@code "job-impressions"}. * * @return Attribute category name. */