Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/javax/print/attribute/PrintJobAttributeSet.java
38918 views
/*1* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/242526package javax.print.attribute;2728/**29* Interface PrintJobAttributeSet specifies the interface for a set of print30* job attributes, i.e. printing attributes that implement interface {@link31* PrintJobAttribute PrintJobAttribute}. In the Print Service API, a32* service uses a PrintJobAttributeSet to report the status of a print job.33* <P>34* A PrintJobAttributeSet is just an {@link AttributeSet AttributeSet} whose35* constructors and mutating operations guarantee an additional invariant,36* namely that all attribute values in the PrintJobAttributeSet must be37* instances of interface {@link PrintJobAttribute PrintJobAttribute}.38* The {@link #add(Attribute) add(Attribute)}, and39* {@link #addAll(AttributeSet) >addAll(AttributeSet)} operations40* are respecified below to guarantee this additional invariant.41* <P>42*43* @author Alan Kaminsky44*/45public interface PrintJobAttributeSet extends AttributeSet {4647/**48* Adds the specified attribute value to this attribute set if it is not49* already present, first removing any existing value in the same50* attribute category as the specified attribute value (optional51* operation).52*53* @param attribute Attribute value to be added to this attribute set.54*55* @return <tt>true</tt> if this attribute set changed as a result of56* the call, i.e., the given attribute value was not already a57* member of this attribute set.58*59* @throws UnmodifiableSetException60* (unchecked exception) Thrown if this attribute set does not61* support the <CODE>add()</CODE> operation.62* @throws ClassCastException63* (unchecked exception) Thrown if the <CODE>attribute</CODE> is64* not an instance of interface65* {@link PrintJobAttribute PrintJobAttribute}.66* @throws NullPointerException67* (unchecked exception) Thrown if the <CODE>attribute</CODE> is null.68*/69public boolean add(Attribute attribute);7071/**72* Adds all of the elements in the specified set to this attribute.73* The outcome is the same as if the74* {@link #add(Attribute) add(Attribute)}75* operation had been applied to this attribute set successively with76* each element from the specified set. If none of the categories in the77* specified set are the same as any categories in this attribute set,78* the <tt>addAll()</tt> operation effectively modifies this attribute79* set so that its value is the <i>union</i> of the two sets.80* <P>81* The behavior of the <CODE>addAll()</CODE> operation is unspecified if82* the specified set is modified while the operation is in progress.83* <P>84* If the <CODE>addAll()</CODE> operation throws an exception, the effect85* on this attribute set's state is implementation dependent; elements86* from the specified set before the point of the exception may or87* may not have been added to this attribute set.88*89* @param attributes whose elements are to be added to this attribute90* set.91*92* @return <tt>true</tt> if this attribute set changed as a result of93* the call.94*95* @throws UnmodifiableSetException96* (Unchecked exception) Thrown if this attribute set does not97* support the <tt>addAll()</tt> method.98* @throws ClassCastException99* (Unchecked exception) Thrown if some element in the specified100* set is not an instance of interface {@link PrintJobAttribute101* PrintJobAttribute}.102* @throws NullPointerException103* (Unchecked exception) Thrown if the specified set is null.104*105* @see #add(Attribute)106*/107public boolean addAll(AttributeSet attributes);108}109110111