java.lang.Object | |
↳ | javax.swing.DefaultSingleSelectionModel |
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 XMLEncoder
.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
changeEvent | |||||||||||
listenerList | The collection of registered listeners |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Adds a
ChangeListener to the button. | |||||||||||
Clears the selection (to -1).
| |||||||||||
Returns an array of all the change listeners
registered on this
DefaultSingleSelectionModel . | |||||||||||
Returns an array of all the objects currently registered as
FooListener s
upon this model. | |||||||||||
Returns the model's selection.
| |||||||||||
Returns true if the selection model currently has a selected value.
| |||||||||||
Removes a
ChangeListener from the button. | |||||||||||
Sets the model's selected index to index.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Notifies all listeners that have registered interest for
notification on this event type.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Adds a ChangeListener
to the button.
l | the ChangeListener to add |
---|
Clears the selection (to -1).
Returns an array of all the change listeners
registered on this DefaultSingleSelectionModel
.
ChangeListener
s
or an empty
array if no change listeners are currently registeredReturns an array of all the objects currently registered as
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 addedClassCastException | if listenerType doesn't
specify a class or interface that implements
java.util.EventListener |
---|
Returns the model's selection.
Returns true if the selection model currently has a selected value.
Removes a ChangeListener
from the button.
l | the ChangeListener to remove |
---|
Sets the model's selected index to index. Notifies any listeners if the model changes
index | an int specifying the model selection |
---|
Notifies all listeners that have registered interest for notification on this event type. The event instance is created lazily.