blob: 161c09115f74e0b196020c70668e3cc40fcc61b1 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2000-2004 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25package javax.print.attribute.standard;
26
27import javax.print.attribute.Attribute;
28import javax.print.attribute.IntegerSyntax;
29import javax.print.attribute.PrintJobAttribute;
30
31/**
32 * Class NumberOfInterveningJobs is an integer valued printing attribute that
33 * indicates the number of jobs that are ahead of this job in the relative
34 * chronological order of expected time to complete (i.e., the current
35 * scheduled order).
36 * <P>
37 * <B>IPP Compatibility:</B> The integer value gives the IPP integer value.
38 * The category name returned by <CODE>getName()</CODE> gives the IPP
39 * attribute name.
40 * <P>
41 *
42 * @author Alan Kaminsky
43 */
44public final class NumberOfInterveningJobs extends IntegerSyntax
45 implements PrintJobAttribute {
46
47 private static final long serialVersionUID = 2568141124844982746L;
48
49 /**
50 * Construct a new number of intervening jobs attribute with the given
51 * integer value.
52 *
53 * @param value Integer value.
54 *
55 * @exception IllegalArgumentException
56 * (Unchecked exception) Thrown if <CODE>value</CODE> is less than 0.
57 */
58 public NumberOfInterveningJobs(int value) {
59 super(value, 0, Integer.MAX_VALUE);
60 }
61
62 /**
63 * Returns whether this number of intervening jobs attribute is equivalent
64 * to the passed in object. To be equivalent, all of the following
65 * conditions must be true:
66 * <OL TYPE=1>
67 * <LI>
68 * <CODE>object</CODE> is not null.
69 * <LI>
70 * <CODE>object</CODE> is an instance of class NumberOfInterveningJobs.
71 * <LI>
72 * This number of intervening jobs attribute's value and
73 * <CODE>object</CODE>'s value are equal.
74 * </OL>
75 *
76 * @param object Object to compare to.
77 *
78 * @return True if <CODE>object</CODE> is equivalent to this number of
79 * intervening jobs attribute, false otherwise.
80 */
81 public boolean equals(Object object) {
82 return (super.equals (object) &&
83 object instanceof NumberOfInterveningJobs);
84 }
85
86 /**
87 * Get the printing attribute class which is to be used as the "category"
88 * for this printing attribute value.
89 * <P>
90 * For class NumberOfInterveningJobs, the
91 * category is class NumberOfInterveningJobs itself.
92 *
93 * @return Printing attribute class (category), an instance of class
94 * {@link java.lang.Class java.lang.Class}.
95 */
96 public final Class<? extends Attribute> getCategory() {
97 return NumberOfInterveningJobs.class;
98 }
99
100 /**
101 * Get the name of the category of which this attribute value is an
102 * instance.
103 * <P>
104 * For class NumberOfInterveningJobs, the
105 * category name is <CODE>"number-of-intervening-jobs"</CODE>.
106 *
107 * @return Attribute category name.
108 */
109 public final String getName() {
110 return "number-of-intervening-jobs";
111 }
112
113}