src/share/classes/javax/print/attribute/PrintRequestAttribute.java

Print this page




  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 
  27 package javax.print.attribute;
  28 
  29 /**
  30  * Interface PrintRequestAttribute is a tagging interface which a printing
  31  * attribute class implements to indicate the attribute denotes a
  32  * requested setting for a print job.
  33  * <p>
  34  * Attributes which are tagged with PrintRequestAttribute and are also tagged
  35  * as PrintJobAttribute, represent the subset of job attributes which
  36  * can be part of the specification of a job request.
  37  * <p>
  38  * If an attribute implements {@link DocAttribute  DocAttribute}
  39  * as well as PrintRequestAttribute, the client may include the
  40  * attribute in a <code>Doc</code>}'s attribute set to specify
  41  * a job setting which pertains just to that doc.
  42  * <P>
  43  *
  44  * @see DocAttributeSet
  45  * @see PrintRequestAttributeSet
  46  *
  47  * @author  Alan Kaminsky
  48  */
  49 
  50 public interface PrintRequestAttribute extends Attribute {
  51 }


  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 
  27 package javax.print.attribute;
  28 
  29 /**
  30  * Interface PrintRequestAttribute is a tagging interface which a printing
  31  * attribute class implements to indicate the attribute denotes a
  32  * requested setting for a print job.
  33  * <p>
  34  * Attributes which are tagged with PrintRequestAttribute and are also tagged
  35  * as PrintJobAttribute, represent the subset of job attributes which
  36  * can be part of the specification of a job request.
  37  * <p>
  38  * If an attribute implements {@link DocAttribute  DocAttribute}
  39  * as well as PrintRequestAttribute, the client may include the
  40  * attribute in a <code>Doc</code>}'s attribute set to specify
  41  * a job setting which pertains just to that doc.

  42  *
  43  * @see DocAttributeSet
  44  * @see PrintRequestAttributeSet
  45  *
  46  * @author  Alan Kaminsky
  47  */
  48 
  49 public interface PrintRequestAttribute extends Attribute {
  50 }