Package Summary  Overview Summary

class:AbstractSpinnerModel [NONE]

field:listenerList [NONE]

  • listenerList

    protected EventListenerList listenerList
    The list of ChangeListeners for this model. Subclasses may store their own listeners here.

constructor:<init>() [NONE]

  • AbstractSpinnerModel

    public AbstractSpinnerModel()

method:addChangeListener(javax.swing.event.ChangeListener) [NONE]

method:removeChangeListener(javax.swing.event.ChangeListener) [NONE]

method:getChangeListeners() [NONE]

  • getChangeListeners

    public ChangeListener[] getChangeListeners()
    Returns an array of all the ChangeListeners 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

method:fireStateChanged() [NONE]

method:getListeners(java.lang.Class) [NONE]

  • getListeners

    public <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. 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

© 2018 Oracle Corporation and/or its affiliates