diff options
author | Wolfgang Baer <WBaer@gmx.de> | 2005-11-13 18:58:38 +0000 |
---|---|---|
committer | Wolfgang Baer <WBaer@gmx.de> | 2005-11-13 18:58:38 +0000 |
commit | e4952b6ae5a8c7db58c5ef6b3abe5266dd509e46 (patch) | |
tree | 85025e97c0ad170466d5f15699f2f7571ff34c75 /javax/print/attribute/HashPrintRequestAttributeSet.java | |
parent | 8c37e37f9e71677ff11f26b5a5a5eb06bfc3728a (diff) | |
download | classpath-e4952b6ae5a8c7db58c5ef6b3abe5266dd509e46.tar.gz |
2005-11-13 Wolfgang Baer <WBaer@gmx.de>
* javax/print/attribute/HashDocAttributeSet.java,
* javax/print/attribute/HashPrintJobAttributeSet.java,
* javax/print/attribute/HashPrintRequestAttributeSet.java,
* javax/print/attribute/HashPrintServiceAttributeSet.java,
Added class api docs and enhanced method api docs.
Diffstat (limited to 'javax/print/attribute/HashPrintRequestAttributeSet.java')
-rw-r--r-- | javax/print/attribute/HashPrintRequestAttributeSet.java | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/javax/print/attribute/HashPrintRequestAttributeSet.java b/javax/print/attribute/HashPrintRequestAttributeSet.java index 29a17861f..e74c0e00f 100644 --- a/javax/print/attribute/HashPrintRequestAttributeSet.java +++ b/javax/print/attribute/HashPrintRequestAttributeSet.java @@ -1,5 +1,5 @@ /* HashPrintRequestAttributeSet.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>HashPrintRequestAttributeSet</code> provides an implementation of + * {@link javax.print.attribute.PrintRequestAttributeSet}. + */ public class HashPrintRequestAttributeSet extends HashAttributeSet implements Serializable, PrintRequestAttributeSet { @@ -56,7 +60,7 @@ public class HashPrintRequestAttributeSet extends HashAttributeSet * Creates a <code>HashPrintRequestAttributeSet</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 HashPrintRequestAttributeSet extends HashAttributeSet * Creates a <code>HashPrintRequestAttributeSet</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 HashPrintRequestAttributeSet(PrintRequestAttribute[] attributes) { @@ -79,11 +85,11 @@ public class HashPrintRequestAttributeSet extends HashAttributeSet } /** - * Creates a <code>HashPrintRequestAttributeSet</code> object with the given - * attributes in it. - * - * @param attributes the attributes to put into the attribute set + * Creates a <code>HashPrintRequestAttributeSet</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>PrintRequestAttribute</code> */ |