java.lang.Object | +--javax.swing.DefaultSingleSelectionModel
Safe: A generic implementation of SingleSelectionModel.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeansTM
has been added to the java.beans
package.
Please see java.beans.XMLEncoder
.
DefaultSingleSelectionModel()
protected void
fireStateChanged()
ChangeListener[]
getChangeListeners()
DefaultSingleSelectionModel
.
EventListener[]
getListeners(Class listenerType)
FooListener
s
upon this model.
protected transient ChangeEvent changeEvent
protected EventListenerList listenerList
private int index
public DefaultSingleSelectionModel()
public int getSelectedIndex()
getSelectedIndex
in interface SingleSelectionModel
SingleSelectionModel.setSelectedIndex(int)
public void setSelectedIndex(int index)
setSelectedIndex
in interface SingleSelectionModel
public void clearSelection()
clearSelection
in interface SingleSelectionModel
public boolean isSelected()
isSelected
in interface SingleSelectionModel
public void addChangeListener(ChangeListener l)
ChangeListener
to the button.
addChangeListener
in interface SingleSelectionModel
public void removeChangeListener(ChangeListener l)
ChangeListener
from the button.
removeChangeListener
in interface SingleSelectionModel
public ChangeListener[] getChangeListeners()
DefaultSingleSelectionModel
.
ChangeListener
s
or an empty
array if no change listeners are currently registeredaddChangeListener(javax.swing.event.ChangeListener)
,
removeChangeListener(javax.swing.event.ChangeListener)
protected void fireStateChanged()
EventListenerList
public EventListener[] getListeners(Class listenerType)
FooListener
s
upon this model.
FooListener
s
are registered using the addFooListener
method.
You can specify the listenerType
argument
with a class literal, such as FooListener.class
.
For example, you can query a DefaultSingleSelectionModel
instance m
for its change listeners
with the following code:
ChangeListener[] cls = (ChangeListener[])(m.getListeners(ChangeListener.class));If no such listeners exist, this method returns an empty array.
listenerType
- the type of listeners requested;
this parameter should specify an interface
that descends from java.util.EventListener
FooListener
s
on this model,
or an empty array if no such
listeners have been addedgetChangeListeners()