HashPrintJobAttributeSetpublic class HashPrintJobAttributeSet extends HashAttributeSet implements Serializable, PrintJobAttributeSetClass HashPrintJobAttributeSet provides an attribute set
which inherits its implementation from class {@link HashAttributeSet
HashAttributeSet} and enforces the semantic restrictions of interface
{@link PrintJobAttributeSet PrintJobAttributeSet}.
|
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public HashPrintJobAttributeSet()Construct a new, empty hash print job attribute set.
super(PrintJobAttribute.class);
| public HashPrintJobAttributeSet(PrintJobAttribute attribute)Construct a new hash print job attribute set,
initially populated with the given value.
super(attribute, PrintJobAttribute.class);
| public HashPrintJobAttributeSet(PrintJobAttribute[] attributes)Construct a new hash print job attribute set,
initially populated with the values from the given array.
The new attribute set is populated
by adding the elements of attributes array to the set in
sequence, starting at index 0. Thus, later array elements may replace
earlier array elements if the array contains duplicate attribute
values or attribute categories.
super (attributes, PrintJobAttribute.class);
| public HashPrintJobAttributeSet(PrintJobAttributeSet attributes)Construct a new attribute set, initially populated with the
values from the given set where the members of the attribute set
are restricted to the PrintJobAttribute interface.
super(attributes, PrintJobAttribute.class);
|
|