X-Git-Url: https://git.hcoop.net/clinton/mirror/jspi/.git/blobdiff_plain/1a55f01cf981bd9174172c279ad0fd786f7b9e0f..3ea135bb6f2d874cae958af400076d5faf9d7e26:/jspi/src/main/java/de/lohndirekt/print/attribute/cups/JobPageLimit.java diff --git a/jspi/src/main/java/de/lohndirekt/print/attribute/cups/JobPageLimit.java b/jspi/src/main/java/de/lohndirekt/print/attribute/cups/JobPageLimit.java new file mode 100644 index 0000000..ed73339 --- /dev/null +++ b/jspi/src/main/java/de/lohndirekt/print/attribute/cups/JobPageLimit.java @@ -0,0 +1,58 @@ +/** + * Copyright (C) 2003 lohndirekt.de + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package de.lohndirekt.print.attribute.cups; + +import javax.print.attribute.IntegerSyntax; +import javax.print.attribute.PrintServiceAttribute; + + +public class JobPageLimit extends IntegerSyntax implements PrintServiceAttribute { + + /** + * @param value + */ + public JobPageLimit(int value) { + super(value); + } + + /** + * @param value + * @param lowerBound + * @param upperBound + */ + public JobPageLimit(int value, int lowerBound, int upperBound) { + super(value, lowerBound, upperBound); + } + + /** + * + */ + + public Class getCategory() { + return this.getClass(); + } + + public String getName() { + return JobPageLimit.getIppName(); + } + + public static String getIppName(){ + return "job-page-limit"; + } +}