Commit 13b7bc8a by Tom Tromey Committed by Tom Tromey

NumberFormat.java (groupingUsed, [...]): Now package-private.

	* java/text/NumberFormat.java (groupingUsed, parseIntegerOnly,
	maximumFractionDigits, maximumIntegerDigits,
	minimumFractionDigits, minimumIntegerDigits): Now
	package-private.

From-SVN: r38274
parent 8eb1306f
2000-12-14 Tom Tromey <tromey@redhat.com> 2000-12-14 Tom Tromey <tromey@redhat.com>
* java/text/NumberFormat.java (groupingUsed, parseIntegerOnly,
maximumFractionDigits, maximumIntegerDigits,
minimumFractionDigits, minimumIntegerDigits): Now
package-private.
* java/lang/Thread.java (checkAccess): Now final. * java/lang/Thread.java (checkAccess): Now final.
* java/lang/RuntimePermission.java: Class now final. * java/lang/RuntimePermission.java: Class now final.
......
...@@ -251,16 +251,16 @@ public abstract class NumberFormat extends Format implements Cloneable ...@@ -251,16 +251,16 @@ public abstract class NumberFormat extends Format implements Cloneable
} }
// These field names are fixed by the serialization spec. // These field names are fixed by the serialization spec.
protected boolean groupingUsed; boolean groupingUsed;
protected int maximumFractionDigits; int maximumFractionDigits;
private byte maxFractionDigits; private byte maxFractionDigits;
protected int maximumIntegerDigits; int maximumIntegerDigits;
private byte maxIntegerDigits; private byte maxIntegerDigits;
protected int minimumFractionDigits; int minimumFractionDigits;
private byte minFractionDigits; private byte minFractionDigits;
protected int minimumIntegerDigits; int minimumIntegerDigits;
private byte minIntegerDigits; private byte minIntegerDigits;
protected boolean parseIntegerOnly; boolean parseIntegerOnly;
private int serialVersionOnStream; private int serialVersionOnStream;
private static final long serialVersionUID = -2308460125733713944L; private static final long serialVersionUID = -2308460125733713944L;
......
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