Path: blob/master/src/java.desktop/share/classes/javax/print/attribute/PrintJobAttributeSet.java
41159 views
/*1* Copyright (c) 2000, 2017, 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*/2425package javax.print.attribute;2627/**28* Interface {@code PrintJobAttributeSet} specifies the interface for a set of29* print job attributes, i.e. printing attributes that implement interface30* {@link PrintJobAttribute PrintJobAttribute}. In the Print Service API, a31* service uses a {@code PrintJobAttributeSet} to report the status of a print32* job.33* <p>34* A {@code PrintJobAttributeSet} is just an {@link AttributeSet AttributeSet}35* whose constructors and mutating operations guarantee an additional invariant,36* namely that all attribute values in the {@code PrintJobAttributeSet} must be37* instances of interface {@link PrintJobAttribute PrintJobAttribute}. The38* {@link #add(Attribute) add(Attribute)}, and39* {@link #addAll(AttributeSet) addAll(AttributeSet)} operations are respecified40* below to guarantee this additional invariant.41*42* @author Alan Kaminsky43*/44public interface PrintJobAttributeSet extends AttributeSet {4546/**47* Adds the specified attribute value to this attribute set if it is not48* already present, first removing any existing value in the same attribute49* category as the specified attribute value (optional operation).50*51* @param attribute attribute value to be added to this attribute set52* @return {@code true} if this attribute set changed as a result of the53* call, i.e., the given attribute value was not already a member of54* this attribute set55* @throws UnmodifiableSetException if this attribute set does not support56* the {@code add()} operation57* @throws ClassCastException if the {@code attribute} is not an instance of58* interface {@link PrintJobAttribute PrintJobAttribute}59* @throws NullPointerException if the {@code attribute} is {@code null}60*/61public boolean add(Attribute attribute);6263/**64* Adds all of the elements in the specified set to this attribute. The65* outcome is the same as if the {@link #add(Attribute) add(Attribute)}66* operation had been applied to this attribute set successively with each67* element from the specified set. If none of the categories in the68* specified set are the same as any categories in this attribute set, the69* {@code addAll()} operation effectively modifies this attribute set so70* that its value is the <i>union</i> of the two sets.71* <p>72* The behavior of the {@code addAll()} operation is unspecified if the73* specified set is modified while the operation is in progress.74* <p>75* If the {@code addAll()} operation throws an exception, the effect on this76* attribute set's state is implementation dependent; elements from the77* specified set before the point of the exception may or may not have been78* added to this attribute set.79*80* @param attributes whose elements are to be added to this attribute set81* @return {@code true} if this attribute set changed as a result of the82* call83* @throws UnmodifiableSetException if this attribute set does not support84* the {@code addAll()} method85* @throws ClassCastException if some element in the specified set is not an86* instance of interface {@link PrintJobAttribute PrintJobAttribute}87* @throws NullPointerException if the specified set is {@code null}88* @see #add(Attribute)89*/90public boolean addAll(AttributeSet attributes);91}929394