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. From-SVN: r81003
This commit is contained in:
parent
83ef3f2bae
commit
5c09d725b1
3 changed files with 23 additions and 2 deletions
|
@ -46,6 +46,8 @@ public class MalformedInputException extends CharacterCodingException
|
|||
|
||||
/**
|
||||
* Creates the exception
|
||||
*
|
||||
* @param inputLength the position of malformed input in the input stream
|
||||
*/
|
||||
public MalformedInputException (int inputLength)
|
||||
{
|
||||
|
@ -54,7 +56,9 @@ public class MalformedInputException extends CharacterCodingException
|
|||
}
|
||||
|
||||
/**
|
||||
* 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 @@ public class MalformedInputException extends CharacterCodingException
|
|||
|
||||
/**
|
||||
* Returns the detail message string of this throwable
|
||||
*
|
||||
* @return the message
|
||||
*/
|
||||
public String getMessage ()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue