src/share/classes/javax/print/attribute/standard/NumberOfDocuments.java

Print this page


   1 /*
   2  * Copyright (c) 2000, 2004, Oracle and/or its affiliates. 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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package javax.print.attribute.standard;
  26 
  27 import javax.print.attribute.Attribute;
  28 import javax.print.attribute.IntegerSyntax;
  29 import javax.print.attribute.PrintJobAttribute;
  30 
  31 /**
  32  * Class NumberOfDocuments is an integer valued printing attribute that
  33  * indicates the number of individual docs the printer has accepted for this
  34  * job, regardless of whether the docs' print data has reached the printer or
  35  * not.
  36  * <P>
  37  * <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
  38  * category name returned by <CODE>getName()</CODE> gives the IPP attribute
  39  * name.
  40  * <P>
  41  *
  42  * @author  Alan Kaminsky
  43  */
  44 public final class NumberOfDocuments extends IntegerSyntax
  45     implements PrintJobAttribute {
  46 
  47     private static final long serialVersionUID = 7891881310684461097L;
  48 
  49 
  50     /**
  51      * Construct a new number of documents attribute with the given integer
  52      * value.
  53      *
  54      * @param  value  Integer value.
  55      *
  56      * @exception  IllegalArgumentException
  57      *   (Unchecked exception) Thrown if <CODE>value</CODE> is less than 0.
  58      */
  59     public NumberOfDocuments(int value) {
  60         super (value, 0, Integer.MAX_VALUE);


   1 /*
   2  * Copyright (c) 2000, 2014, Oracle and/or its affiliates. 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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package javax.print.attribute.standard;
  26 
  27 import javax.print.attribute.Attribute;
  28 import javax.print.attribute.IntegerSyntax;
  29 import javax.print.attribute.PrintJobAttribute;
  30 
  31 /**
  32  * Class NumberOfDocuments is an integer valued printing attribute that
  33  * indicates the number of individual docs the printer has accepted for this
  34  * job, regardless of whether the docs' print data has reached the printer or
  35  * not.
  36  * <P>
  37  * <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
  38  * category name returned by <CODE>getName()</CODE> gives the IPP attribute
  39  * name.

  40  *
  41  * @author  Alan Kaminsky
  42  */
  43 public final class NumberOfDocuments extends IntegerSyntax
  44     implements PrintJobAttribute {
  45 
  46     private static final long serialVersionUID = 7891881310684461097L;
  47 
  48 
  49     /**
  50      * Construct a new number of documents attribute with the given integer
  51      * 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 NumberOfDocuments(int value) {
  59         super (value, 0, Integer.MAX_VALUE);