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
0N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
0N/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,
2362N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2362N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A * or visit www.oracle.com if you need additional information or have any
0N/A * questions.
0N/A */
0N/Apackage javax.print.attribute.standard;
0N/A
0N/Aimport java.util.Date;
0N/Aimport javax.print.attribute.Attribute;
0N/Aimport javax.print.attribute.DateTimeSyntax;
0N/Aimport javax.print.attribute.PrintJobAttribute;
0N/A
0N/A/**
0N/A * Class DateTimeAtCompleted is a printing attribute class, a date-time
0N/A * attribute, that indicates the date and time at which the Print Job completed
0N/A * (or was canceled or aborted).
0N/A * <P>
0N/A * To construct a DateTimeAtCompleted attribute from separate values of the
0N/A * year, month, day, hour, minute, and so on, use a {@link java.util.Calendar
0N/A * Calendar} object to construct a {@link java.util.Date Date} object, then use
0N/A * the {@link java.util.Date Date} object to construct the DateTimeAtCompleted
0N/A * attribute. To convert a DateTimeAtCompleted attribute to separate values of
0N/A * the year, month, day, hour, minute, and so on, create a {@link
0N/A * java.util.Calendar Calendar} object and set it to the {@link java.util.Date
0N/A * Date} from the DateTimeAtCompleted attribute.
0N/A * <P>
0N/A * <B>IPP Compatibility:</B> The information needed to construct an IPP
0N/A * "date-time-at-completed" attribute can be obtained as described above. The
0N/A * category name returned by <CODE>getName()</CODE> gives the IPP attribute
0N/A * name.
0N/A * <P>
0N/A *
0N/A * @author Alan Kaminsky
0N/A */
0N/Apublic final class DateTimeAtCompleted extends DateTimeSyntax
0N/A implements PrintJobAttribute {
0N/A
0N/A private static final long serialVersionUID = 6497399708058490000L;
0N/A
0N/A /**
0N/A * Construct a new date-time at completed attribute with the given {@link
0N/A * java.util.Date Date} value.
0N/A *
0N/A * @param dateTime {@link java.util.Date Date} value.
0N/A *
0N/A * @exception NullPointerException
0N/A * (unchecked exception) Thrown if <CODE>dateTime</CODE> is null.
0N/A */
0N/A public DateTimeAtCompleted(Date dateTime) {
super (dateTime);
}
/**
* Returns whether this date-time at completed attribute is equivalent to
* the passed in object. To be equivalent, all of the following conditions
* must be true:
* <OL TYPE=1>
* <LI>
* <CODE>object</CODE> is not null.
* <LI>
* <CODE>object</CODE> is an instance of class DateTimeAtCompleted.
* <LI>
* This date-time at completed attribute's {@link java.util.Date Date} value
* and <CODE>object</CODE>'s {@link java.util.Date Date} value are equal.
* </OL>
*
* @param object Object to compare to.
*
* @return True if <CODE>object</CODE> is equivalent to this date-time
* at completed attribute, false otherwise.
*/
public boolean equals(Object object) {
return(super.equals (object) &&
object instanceof DateTimeAtCompleted);
}
// Exported operations inherited and implemented from interface Attribute.
/**
* Get the printing attribute class which is to be used as the "category"
* for this printing attribute value.
* <P>
* For class DateTimeAtCompleted, the category is class
* DateTimeAtCompleted itself.
*
* @return Printing attribute class (category), an instance of class
* {@link java.lang.Class java.lang.Class}.
*/
public final Class<? extends Attribute> getCategory() {
return DateTimeAtCompleted.class;
}
/**
* Get the name of the category of which this attribute value is an
* instance.
* <P>
* For class DateTimeAtCompleted, the category name is
* <CODE>"date-time-at-completed"</CODE>.
*
* @return Attribute category name.
*/
public final String getName() {
return "date-time-at-completed";
}
}