Imported GNU Classpath 0.19 + gcj-import-20051115.
* sources.am: Regenerated. * Makefile.in: Likewise. * scripts/makemake.tcl: Use glob -nocomplain. From-SVN: r107049
This commit is contained in:
parent
02e549bfaa
commit
8f523f3a10
1241 changed files with 97711 additions and 25284 deletions
|
@ -1,5 +1,5 @@
|
|||
/* HashPrintJobAttributeSet.java --
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 2003, 2005 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
@ -39,6 +39,10 @@ package javax.print.attribute;
|
|||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* <code>HashPrintJobAttributeSet</code> provides an implementation of
|
||||
* {@link javax.print.attribute.PrintJobAttributeSet}.
|
||||
*/
|
||||
public class HashPrintJobAttributeSet extends HashAttributeSet
|
||||
implements Serializable, PrintJobAttributeSet
|
||||
{
|
||||
|
@ -56,7 +60,7 @@ public class HashPrintJobAttributeSet extends HashAttributeSet
|
|||
* Creates a <code>HashPrintJobAttributeSet</code> object with the given
|
||||
* attribute in it.
|
||||
*
|
||||
* @param attribute the attriute tu put into the attribute set
|
||||
* @param attribute the attribute to put into the attribute set
|
||||
*
|
||||
* @exception NullPointerException if attribute is null
|
||||
*/
|
||||
|
@ -69,9 +73,11 @@ public class HashPrintJobAttributeSet extends HashAttributeSet
|
|||
* Creates a <code>HashPrintJobAttributeSet</code> object with the given
|
||||
* attributes in it.
|
||||
*
|
||||
* @param attributes the attributes to put into the attribute set
|
||||
* @param attributes the array of attributes to put into the set. If
|
||||
* <code>null</code> an empty set is created.
|
||||
*
|
||||
* @exception NullPointerException if attributes is null
|
||||
* @exception NullPointerException if one of the attributes of the given
|
||||
* array is null.
|
||||
*/
|
||||
public HashPrintJobAttributeSet(PrintJobAttribute[] attributes)
|
||||
{
|
||||
|
@ -79,11 +85,11 @@ public class HashPrintJobAttributeSet extends HashAttributeSet
|
|||
}
|
||||
|
||||
/**
|
||||
* Creates a <code>HashPrintJobAttributeSet</code> object with the given
|
||||
* attributes in it.
|
||||
*
|
||||
* @param attributes the attributes to put into the attribute set
|
||||
* Creates a <code>HashPrintJobAttributeSet</code> object with the attributes
|
||||
* of the given attributes set in it.
|
||||
*
|
||||
* @param attributes the attributes set to put into the set. If
|
||||
* <code>null</code> an empty set is created.
|
||||
* @exception ClassCastException if any element of attributes is not
|
||||
* an instance of <code>PrintJobAttribute</code>
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue