Index: java/nio/charset/IllegalCharsetNameException.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/nio/charset/IllegalCharsetNameException.java,v retrieving revision 1.3 diff -u -r1.3 IllegalCharsetNameException.java --- java/nio/charset/IllegalCharsetNameException.java 3 Mar 2003 07:09:20 -0000 1.3 +++ java/nio/charset/IllegalCharsetNameException.java 23 Apr 2004 06:05:29 -0000 @@ -48,10 +48,12 @@ */ private static final long serialVersionUID = 1457525358470002989L; - String charsetName; + private String charsetName; /** * Creates the exception + * + * @param charsetName name of the illegal charset */ public IllegalCharsetNameException (String charsetName) { @@ -61,6 +63,8 @@ /** * Retrieves the illegal charset name + * + * @return the illegal charset name */ public String getCharsetName () { Index: java/nio/charset/MalformedInputException.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/nio/charset/MalformedInputException.java,v retrieving revision 1.2 diff -u -r1.2 MalformedInputException.java --- java/nio/charset/MalformedInputException.java 8 Nov 2002 12:15:32 -0000 1.2 +++ java/nio/charset/MalformedInputException.java 23 Apr 2004 06:05:29 -0000 @@ -46,6 +46,8 @@ /** * Creates the exception + * + * @param inputLength the position of malformed input in the input stream */ public MalformedInputException (int inputLength) { @@ -54,7 +56,9 @@ } /** - * Retrieves the illegal charset name + * Retrieves the position of the malformed input in the input stream. + * + * @return the position */ public int getInputLength () { @@ -63,6 +67,8 @@ /** * Returns the detail message string of this throwable + * + * @return the message */ public String getMessage () {