Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.desktop/share/classes/javax/print/attribute/HashPrintJobAttributeSet.java
41159 views
1
/*
2
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package javax.print.attribute;
27
28
import java.io.Serial;
29
import java.io.Serializable;
30
31
/**
32
* Class {@code HashPrintJobAttributeSet} provides an attribute set which
33
* inherits its implementation from class
34
* {@link HashAttributeSet HashAttributeSet} and enforces the semantic
35
* restrictions of interface {@link PrintJobAttributeSet PrintJobAttributeSet}.
36
*
37
* @author Alan Kaminsky
38
*/
39
public class HashPrintJobAttributeSet extends HashAttributeSet
40
implements PrintJobAttributeSet, Serializable {
41
42
/**
43
* Use serialVersionUID from JDK 1.4 for interoperability.
44
*/
45
@Serial
46
private static final long serialVersionUID = -4204473656070350348L;
47
48
/**
49
* Construct a new, empty hash print job attribute set.
50
*/
51
public HashPrintJobAttributeSet() {
52
super(PrintJobAttribute.class);
53
}
54
55
/**
56
* Construct a new hash print job attribute set, initially populated with
57
* the given value.
58
*
59
* @param attribute attribute value to add to the set
60
* @throws NullPointerException if {@code attribute} is {@code null}
61
*/
62
public HashPrintJobAttributeSet(PrintJobAttribute attribute) {
63
super(attribute, PrintJobAttribute.class);
64
}
65
66
/**
67
* Construct a new hash print job attribute set, initially populated with
68
* the values from the given array. The new attribute set is populated by
69
* adding the elements of {@code attributes} array to the set in sequence,
70
* starting at index 0. Thus, later array elements may replace earlier array
71
* elements if the array contains duplicate attribute values or attribute
72
* categories.
73
*
74
* @param attributes array of attribute values to add to the set. If
75
* {@code null}, an empty attribute set is constructed.
76
* @throws NullPointerException if any element of {@code attributes} is
77
* {@code null}
78
*/
79
public HashPrintJobAttributeSet(PrintJobAttribute[] attributes) {
80
super (attributes, PrintJobAttribute.class);
81
}
82
83
/**
84
* Construct a new attribute set, initially populated with the values from
85
* the given set where the members of the attribute set are restricted to
86
* the {@code PrintJobAttribute} interface.
87
*
88
* @param attributes set of attribute values to initialise the set. If
89
* {@code null}, an empty attribute set is constructed.
90
* @throws ClassCastException if any element of {@code attributes} is not an
91
* instance of {@code PrintJobAttribute}
92
*/
93
public HashPrintJobAttributeSet(PrintJobAttributeSet attributes) {
94
super(attributes, PrintJobAttribute.class);
95
}
96
}
97
98