+2004-04-22 Michael Koch <konqueror@gmx.de>
+
+ * java/nio/charset/IllegalCharsetNameException.java
+ (charsetName): Made private.
+ (IllegalCharsetNameException): Added @param tag to javadoc.
+ (getCharsetName): Added @return tag to javadoc.
+ * java/nio/charset/MalformedInputException.java
+ (MalformedInputException): Added @param tag to javadoc.
+ (getInputLength): Revised method description, added @return tag.
+ (getMessage): Added @return tag.
+
2004-04-22 Jerry Quinn <jlquinn@optonline.net>
* java/awt/Font.java (deriveFont): Implement missing variants.
*/
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)
{
/**
* Retrieves the illegal charset name
+ *
+ * @return the illegal charset name
*/
public String getCharsetName ()
{
/**
* Creates the exception
+ *
+ * @param inputLength the position of malformed input in the input stream
*/
public MalformedInputException (int inputLength)
{
}
/**
- * Retrieves the illegal charset name
+ * Retrieves the position of the malformed input in the input stream.
+ *
+ * @return the position
*/
public int getInputLength ()
{
/**
* Returns the detail message string of this throwable
+ *
+ * @return the message
*/
public String getMessage ()
{