Class AbstractSpinnerModel
java.lang.Object
javax.swing.AbstractSpinnerModel
- All Implemented Interfaces:
Serializable, SpinnerModel
- Direct Known Subclasses:
SpinnerDateModel, SpinnerListModel, SpinnerNumberModel
This class provides the ChangeListener part of the
SpinnerModel interface that should be suitable for most concrete SpinnerModel
implementations. Subclasses must provide an implementation of the
setValue
, getValue
, getNextValue
and
getPreviousValue
methods.- Since:
- 1.4
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected EventListenerList
The list of ChangeListeners for this model. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Constructor for subclasses to call. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a ChangeListener to the model's listener list.protected void
Run each ChangeListeners stateChanged() method.Returns an array of all theChangeListener
s added to this AbstractSpinnerModel with addChangeListener().<T extends EventListener>
T[]getListeners
(Class<T> listenerType) Return an array of all the listeners of the given type that were added to this model.void
Removes a ChangeListener from the model's listener list.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface SpinnerModel
getNextValue, getPreviousValue, getValue, setValue
Modifier and TypeMethodDescriptionReturn the object in the sequence that comes after the object returned bygetValue()
.Return the object in the sequence that comes before the object returned bygetValue()
.getValue()
The current element of the sequence.void
Changes current value of the model, typically this value is displayed by theeditor
part of aJSpinner
.
-
Field Details
-
listenerList
The list of ChangeListeners for this model. Subclasses may store their own listeners here.
-
-
Constructor Details
-
AbstractSpinnerModel
protected AbstractSpinnerModel()Constructor for subclasses to call.
-
-
Method Details
-
addChangeListener
Adds a ChangeListener to the model's listener list. The ChangeListeners must be notified when the models value changes.- Specified by:
addChangeListener
in interfaceSpinnerModel
- Parameters:
l
- the ChangeListener to add- See Also:
-
removeChangeListener
Removes a ChangeListener from the model's listener list.- Specified by:
removeChangeListener
in interfaceSpinnerModel
- Parameters:
l
- the ChangeListener to remove- See Also:
-
getChangeListeners
Returns an array of all theChangeListener
s added to this AbstractSpinnerModel with addChangeListener().- Returns:
- all of the
ChangeListener
s added or an empty array if no listeners have been added - Since:
- 1.4
-
fireStateChanged
protected void fireStateChanged()Run each ChangeListeners stateChanged() method.- See Also:
-
getListeners
Return an array of all the listeners of the given type that were added to this model. For example to find all of the ChangeListeners added to this model:myAbstractSpinnerModel.getListeners(ChangeListener.class);
- Type Parameters:
T
- the type of requested listeners- Parameters:
listenerType
- the type of listeners to return, e.g. ChangeListener.class- Returns:
- all of the objects receiving listenerType notifications from this model
-