Commit 945dabcd by Nathanael Nerode Committed by Tom Tromey

ChoiceFormat.java: Update comments from Classpath.

2002-06-15  Nathanael Nerode  <neroden@twcny.rr.com>

	* java/text/ChoiceFormat.java: Update comments from Classpath.
	* java/text/ParseException.java (serialVersionUID): New
	field from Classpath.
	* java/text/ParseException.java: Update formatting & comments
	from Classpath.

From-SVN: r54654
parent 5f51b048
2002-06-15 Nathanael Nerode <neroden@twcny.rr.com>
* java/text/ChoiceFormat.java: Update comments from Classpath.
* java/text/ParseException.java (serialVersionUID): New
field from Classpath.
* java/text/ParseException.java: Update formatting & comments
from Classpath.
2002-06-15 Tom Tromey <tromey@redhat.com> 2002-06-15 Tom Tromey <tromey@redhat.com>
* java/util/zip/InflaterInputStream.java (read): Loop if data has * java/util/zip/InflaterInputStream.java (read): Loop if data has
......
...@@ -52,10 +52,10 @@ import java.util.Vector; ...@@ -52,10 +52,10 @@ import java.util.Vector;
* This sounds complicated, but that is because I did a poor job of * This sounds complicated, but that is because I did a poor job of
* explaining it. Consider the following example: * explaining it. Consider the following example:
* <p> * <p>
* <pre> *
* terminators = { 1, ChoiceFormat.nextDouble(1) } <pre>terminators = { 1, ChoiceFormat.nextDouble(1) }
* formats = { "file", "files" } formats = { "file", "files" }</pre>
* </pre> *
* <p> * <p>
* In this case if the actual number tested is one or less, then the word * In this case if the actual number tested is one or less, then the word
* "file" is used as the format value. If the number tested is greater than * "file" is used as the format value. If the number tested is greater than
......
/* ParseException.java -- An error occurred while parsing. /* ParseException.java -- an error occurred while parsing
Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -38,65 +38,49 @@ exception statement from your version. */ ...@@ -38,65 +38,49 @@ exception statement from your version. */
package java.text; package java.text;
/* Written using "Java Class Libraries", 2nd edition, plus online
* API docs for JDK 1.2 beta from http://www.javasoft.com.
* Status: Believed complete and correct.
*/
/** /**
* This exception is thrown when an unexpected error occurs during parsing. * This exception is thrown when an unexpected error occurs during parsing.
* *
* @version 0.0
*
* @author Aaron M. Renn (arenn@urbanophile.com) * @author Aaron M. Renn (arenn@urbanophile.com)
* @author Per Bothner <bothner@cygnus.com> * @author Per Bothner <bothner@cygnus.com>
* @date October 25, 1998. * @see Format
* @see FieldPosition
* @status updated to 1.4
*/ */
public class ParseException extends Exception public class ParseException extends Exception
{ {
/**
/* * Compatible with JDK 1.1+.
* Instance Variables
*/ */
private static final long serialVersionUID = 2703218443322787634L;
/** /**
* This is the position where the error was encountered. * This is the position where the error was encountered.
*
* @serial the zero-based offset in the string where the error occurred
*/ */
private int errorOffset; private final int errorOffset;
/*************************************************************************/
/*
* Constructors
*/
/** /**
* This method initializes a new instance of <code>ParseException</code> * This method initializes a new instance of <code>ParseException</code>
* with a detailed error message and a error position. * with a detailed error message and a error position.
* *
* @param msg The descriptive message describing the error. * @param msg the descriptive message describing the error
* @param offset The position where the error was encountered. * @param offset the position where the error was encountered
*/ */
public public ParseException(String s, int offset)
ParseException(String s, int offset) {
{
super(s); super(s);
errorOffset = offset; errorOffset = offset;
} }
/*************************************************************************/
/** /**
* This method returns the position where the error occurred. * This method returns the position where the error occurred.
* *
* @return The position where the error occurred. * @return the position where the error occurred
*/ */
public int public int getErrorOffset()
getErrorOffset() {
{ return errorOffset;
return(errorOffset); }
}
} // class ParseException } // class ParseException
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment