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 EventListenerListThe list of ChangeListeners for this model. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructor for subclasses to call. -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds a ChangeListener to the model's listener list.protected voidRun each ChangeListeners stateChanged() method.Returns an array of all theChangeListeners 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.voidRemoves a ChangeListener from the model's listener list.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()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.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(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 voidwait(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, setValueModifier 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.voidChanges current value of the model, typically this value is displayed by theeditorpart 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:
addChangeListenerin interfaceSpinnerModel- Parameters:
l- the ChangeListener to add- See Also:
-
removeChangeListener
Removes a ChangeListener from the model's listener list.- Specified by:
removeChangeListenerin interfaceSpinnerModel- Parameters:
l- the ChangeListener to remove- See Also:
-
getChangeListeners
Returns an array of all theChangeListeners added to this AbstractSpinnerModel with addChangeListener().- Returns:
- all of the
ChangeListeners 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
-