Name: ooR10001 Date: 12/18/2000
Specification for javax.swing.SpinnerNumberModel.SpinnerNumberModel(int, int, int, int) and
for javax.swing.SpinnerNumberModel.SpinnerNumberModel(double, double, double, double) is
incorrect because it says:
------------------------------------------------------------
SpinnerNumberModel
public SpinnerNumberModel(int value,
int minimum,
int maximum,
int stepSize)
Construct a SpinnerNumberModel with the specified value, minimum/maximum bounds,
and stepSize.
Parameters:
value - the current value of the model
minimum - the first number in the sequence
maximum - the last number in the sequence
stepSize - the difference between elements of the sequence
Throws:
IllegalArgumentException - if stepSize or value is null or if the following
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
expression is false: minimum <= value <= maximum
SpinnerNumberModel
public SpinnerNumberModel(double value,
double minimum,
double maximum,
double stepSize)
Construct a SpinnerNumberModel with the specified value, minimum/maximum bounds, and
stepSize.
Parameters:
value - the current value of the model
minimum - the first number in the sequence
maximum - the last number in the sequence
stepSize - the difference between elements of the sequence
Throws:
IllegalArgumentException - if stepSize or value is null or if the following
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
expression is false: minimum <= value <= maximum
------------------------------------------------------------
In fact, the 'stepSize' and 'value' parameters can not be null because they has primitive
type. It needs to be fixed.
======================================================================