Public Member Functions | |
| JIntegerTextField () | |
| int | getIntegerValue () |
| boolean | isMaximumSet () |
| boolean | isMinimumSet () |
| void | setIntegerValue (int newValue) |
| void | setMaximum (int value) |
| void | setMaximumSet (boolean newMaximumSet) |
| void | setMinimum (int value) |
| void | setMinimumSet (boolean newMinimumSet) |
Protected Member Functions | |
| Document | createDefaultModel () |
| void | internalSet (int value) |
Private Attributes | |
| int | integerValue = 0 |
| int | minValue = 0 |
| int | maxValue = 100 |
| boolean | minimumSet = false |
| boolean | maximumSet = false |
Minimum and maximum values that can be entered into this field can also be set. By default they are 0 and 100 respectively. If user attempts to enter a number outside these bounds, the value will be set to the appropriate limit. Creation date: (26-Oct-01 11:24:17 AM)
|
|
Creates new JIntegerTextField. |
|
|
|
|
|
Returns the integer value represented by this component. Creation date: (29-Oct-01 1:54:44 PM)
|
|
|
Sets the integer value and fires the property change event. Creation date: (2/4/02 3:00:32 PM)
|
|
|
Returns if this component has maximum set. Creation date: (2/10/2002 18:38:35)
|
|
|
Returns if this component has minimum set. Creation date: (2/10/2002 18:38:35)
|
|
|
Sets the integer value of
|
|
|
Sets the maximum value that can be entered into this component. Any value larger than this will be set to this maximum. Creation date: (2/4/02 2:44:24 PM)
|
|
|
Sets whether the maximum value should be checked. Creation date: (2/10/2002 18:38:35)
|
|
|
Sets the minimal value that can be displayed by this component. Any value lower than this value will be set to this minimum. Creation date: (2/4/02 2:43:53 PM)
|
|
|
Sets whether currently set minimum should be checked. Creation date: (2/10/2002 18:38:35)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.3.8