/* * @(#)Copies.java 1.7 04/05/05 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.print.attribute.standard; import javax.print.attribute.Attribute; import javax.print.attribute.IntegerSyntax; import javax.print.attribute.PrintRequestAttribute; import javax.print.attribute.PrintJobAttribute; /** * Class Copies is an integer valued printing attribute class that specifies the * number of copies to be printed. *

* On many devices the supported number of collated copies will be limited by * the number of physical output bins on the device, and may be different from * the number of uncollated copies which can be supported. *

* The effect of a Copies attribute with a value of n on a multidoc print * job (a job with multiple documents) depends on the (perhaps defaulted) value * of the {@link MultipleDocumentHandling MultipleDocumentHandling} attribute: *

*

* IPP Compatibility: The integer value gives the IPP integer value. The * category name returned by getName() gives the IPP attribute * name. *

* * @author David Mendenhall * @author Alan Kamihensky */ public final class Copies extends IntegerSyntax implements PrintRequestAttribute, PrintJobAttribute { private static final long serialVersionUID = -6426631521680023833L; /** * Construct a new copies attribute with the given integer value. * * @param value Integer value. * * @exception IllegalArgumentException * (Unchecked exception) Thrown if value is less than 1. */ public Copies(int value) { super (value, 1, Integer.MAX_VALUE); } /** * Returns whether this copies attribute is equivalent to the passed in * object. To be equivalent, all of the following conditions must be true: *

    *
  1. * object is not null. *
  2. * object is an instance of class Copies. *
  3. * This copies attribute's value and object's value are * equal. *
* * @param object Object to compare to. * * @return True if object is equivalent to this copies * attribute, false otherwise. */ public boolean equals(Object object) { return super.equals (object) && object instanceof Copies; } /** * Get the printing attribute class which is to be used as the "category" * for this printing attribute value. *

* For class Copies, the category is class Copies itself. * * @return Printing attribute class (category), an instance of class * {@link java.lang.Class java.lang.Class}. */ public final Class getCategory() { return Copies.class; } /** * Get the name of the category of which this attribute value is an * instance. *

* For class Copies, the category name is "copies". * * @return Attribute category name. */ public final String getName() { return "copies"; } }