0N/A/*
2362N/A * Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/Apackage javax.print.attribute.standard;
0N/A
0N/Aimport java.util.Locale;
0N/A
0N/Aimport javax.print.attribute.Attribute;
0N/Aimport javax.print.attribute.TextSyntax;
0N/Aimport javax.print.attribute.PrintRequestAttribute;
0N/Aimport javax.print.attribute.PrintJobAttribute;
0N/A
0N/A/**
0N/A * Class JobName is a printing attribute class, a text attribute, that specifies
0N/A * the name of a print job. A job's name is an arbitrary string defined by the
0N/A * client. It does not need to be unique between different jobs. A Print Job's
0N/A * JobName attribute is set to the value supplied by the client in the Print
0N/A * Request's attribute set. If, however, the client does not supply a JobName
0N/A * attribute in the Print Request, the printer, when it creates the Print Job,
0N/A * must generate a JobName. The printer should generate the value of the Print
0N/A * Job's JobName attribute from the first of the following sources that produces
0N/A * a value: (1) the {@link DocumentName DocumentName} attribute of the first (or
0N/A * only) doc in the job, (2) the URL of the first (or only) doc in the job, if
0N/A * the doc's print data representation object is a URL, or (3) any other piece
0N/A * of Print Job specific and/or document content information.
0N/A * <P>
0N/A * <B>IPP Compatibility:</B> The string value gives the IPP name value. The
0N/A * locale gives the IPP natural language. The category name returned by
0N/A * <CODE>getName()</CODE> gives the IPP attribute name.
0N/A * <P>
0N/A *
0N/A * @author Alan Kaminsky
0N/A */
0N/Apublic final class JobName extends TextSyntax
0N/A implements PrintRequestAttribute, PrintJobAttribute {
0N/A
0N/A private static final long serialVersionUID = 4660359192078689545L;
0N/A
0N/A /**
0N/A * Constructs a new job name attribute with the given job name and locale.
0N/A *
0N/A * @param jobName Job name.
0N/A * @param locale Natural language of the text string. null
0N/A * is interpreted to mean the default locale as returned
0N/A * by <code>Locale.getDefault()</code>
0N/A *
0N/A * @exception NullPointerException
0N/A * (unchecked exception) Thrown if <CODE>jobName</CODE> is null.
0N/A */
0N/A public JobName(String jobName, Locale locale) {
0N/A super (jobName, locale);
0N/A }
0N/A
0N/A /**
0N/A * Returns whether this job name attribute is equivalent to the passed in
0N/A * object. To be equivalent, all of the following conditions must be true:
0N/A * <OL TYPE=1>
0N/A * <LI>
0N/A * <CODE>object</CODE> is not null.
0N/A * <LI>
0N/A * <CODE>object</CODE> is an instance of class JobName.
0N/A * <LI>
0N/A * This job name attribute's underlying string and <CODE>object</CODE>'s
0N/A * underlying string are equal.
0N/A * <LI>
0N/A * This job name attribute's locale and <CODE>object</CODE>'s locale are
0N/A * equal.
0N/A * </OL>
0N/A *
0N/A * @param object Object to compare to.
0N/A *
0N/A * @return True if <CODE>object</CODE> is equivalent to this job name
0N/A * attribute, false otherwise.
0N/A */
0N/A public boolean equals(Object object) {
0N/A return (super.equals(object) && object instanceof JobName);
0N/A }
0N/A
0N/A /**
0N/A * Get the printing attribute class which is to be used as the "category"
0N/A * for this printing attribute value.
0N/A * <P>
0N/A * For class JobName, the category is class JobName itself.
0N/A *
0N/A * @return Printing attribute class (category), an instance of class
0N/A * {@link java.lang.Class java.lang.Class}.
0N/A */
0N/A public final Class<? extends Attribute> getCategory() {
0N/A return JobName.class;
0N/A }
0N/A
0N/A /**
0N/A * Get the name of the category of which this attribute value is an
0N/A * instance.
0N/A * <P>
0N/A * For class JobName, the category name is <CODE>"job-name"</CODE>.
0N/A *
0N/A * @return Attribute category name.
0N/A */
0N/A public final String getName() {
0N/A return "job-name";
0N/A }
0N/A
0N/A}