< prev index next >

src/java.management/share/classes/javax/management/ImmutableDescriptor.java

Print this page

        

@@ -63,10 +63,12 @@
             new ImmutableDescriptor();
 
     /**
      * Construct a descriptor containing the given fields and values.
      *
+     * @param fieldNames the field names
+     * @param fieldValues the field values
      * @throws IllegalArgumentException if either array is null, or
      * if the arrays have different sizes, or
      * if a field name is null or empty, or if the same field name
      * appears more than once.
      */

@@ -79,10 +81,11 @@
      * must be of the form {@code fieldName=fieldValue}.  The field name
      * ends at the first {@code =} character; for example if the String
      * is {@code a=b=c} then the field name is {@code a} and its value
      * is {@code b=c}.
      *
+     * @param fields the field names
      * @throws IllegalArgumentException if the parameter is null, or
      * if a field name is empty, or if the same field name appears
      * more than once, or if one of the strings does not contain
      * an {@code =} character.
      */

@@ -92,10 +95,11 @@
 
     /**
      * <p>Construct a descriptor where the names and values of the fields
      * are the keys and values of the given Map.</p>
      *
+     * @param fields the field names and values
      * @throws IllegalArgumentException if the parameter is null, or
      * if a field name is null or empty, or if the same field name appears
      * more than once (which can happen because field names are not case
      * sensitive).
      */
< prev index next >