< prev index next >
src/java.desktop/share/classes/javax/print/attribute/standard/JobState.java
Print this page
*** 37,48 ****
* have to report every defined job state. The {@link JobStateReasons
* JobStateReasons} attribute augments the JobState attribute to give more
* detailed information about the job in the given job state.
* <P>
* <B>IPP Compatibility:</B> The category name returned by
! * <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
! * integer value is the IPP enum value. The <code>toString()</code> method
* returns the IPP string representation of the attribute value.
*
* @author Alan Kaminsky
*/
--- 37,48 ----
* have to report every defined job state. The {@link JobStateReasons
* JobStateReasons} attribute augments the JobState attribute to give more
* detailed information about the job in the given job state.
* <P>
* <B>IPP Compatibility:</B> The category name returned by
! * {@code getName()} is the IPP attribute name. The enumeration's
! * integer value is the IPP enum value. The {@code toString()} method
* returns the IPP string representation of the attribute value.
*
* @author Alan Kaminsky
*/
*** 223,233 ****
/**
* Get the name of the category of which this attribute value is an
* instance.
* <P>
* For class JobState and any vendor-defined subclasses, the category
! * name is <CODE>"job-state"</CODE>.
*
* @return Attribute category name.
*/
public final String getName() {
return "job-state";
--- 223,233 ----
/**
* Get the name of the category of which this attribute value is an
* instance.
* <P>
* For class JobState and any vendor-defined subclasses, the category
! * name is {@code "job-state"}.
*
* @return Attribute category name.
*/
public final String getName() {
return "job-state";
< prev index next >