Liking cljdoc? Tell your friends :D

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 JavaBeans™ has been added to the java.beans package. Please see XMLEncoder.

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 JavaBeans™
has been added to the java.beans package.
Please see XMLEncoder.
raw docstring

->default-single-selection-modelclj

(->default-single-selection-model)

Constructor.

Constructor.
raw docstring

add-change-listenerclj

(add-change-listener this l)

Adds a ChangeListener to the button.

l - the ChangeListener to add - javax.swing.event.ChangeListener

Adds a ChangeListener to the button.

l - the ChangeListener to add - `javax.swing.event.ChangeListener`
raw docstring

clear-selectionclj

(clear-selection this)

Description copied from interface: SingleSelectionModel

Description copied from interface: SingleSelectionModel
raw docstring

get-change-listenersclj

(get-change-listeners this)

Returns an array of all the change listeners registered on this DefaultSingleSelectionModel.

returns: all of this model's ChangeListeners or an empty array if no change listeners are currently registered - javax.swing.event.ChangeListener[]

Returns an array of all the change listeners
 registered on this DefaultSingleSelectionModel.

returns: all of this model's ChangeListeners
         or an empty
         array if no change listeners are currently registered - `javax.swing.event.ChangeListener[]`
raw docstring

get-listenersclj

(get-listeners this listener-type)

Returns an array of all the objects currently registered as FooListeners upon this model. FooListeners 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.

listener-type - the type of listeners requested; this parameter should specify an interface that descends from java.util.EventListener - java.lang.Class

returns: an array of all objects registered as FooListeners on this model, or an empty array if no such listeners have been added - <T extends java.util.EventListener> T[]

throws: java.lang.ClassCastException - if listenerType doesn't specify a class or interface that implements java.util.EventListener

Returns an array of all the objects currently registered as
 FooListeners
 upon this model.
 FooListeners
 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.

listener-type - the type of listeners requested; this parameter should specify an interface that descends from java.util.EventListener - `java.lang.Class`

returns: an array of all objects registered as
          FooListeners
          on this model,
          or an empty array if no such
          listeners have been added - `<T extends java.util.EventListener> T[]`

throws: java.lang.ClassCastException - if listenerType doesn't specify a class or interface that implements java.util.EventListener
raw docstring

get-selected-indexclj

(get-selected-index this)

Description copied from interface: SingleSelectionModel

returns: the model's selection, or -1 if there is no selection - int

Description copied from interface: SingleSelectionModel

returns: the model's selection, or -1 if there is no selection - `int`
raw docstring

remove-change-listenerclj

(remove-change-listener this l)

Removes a ChangeListener from the button.

l - the ChangeListener to remove - javax.swing.event.ChangeListener

Removes a ChangeListener from the button.

l - the ChangeListener to remove - `javax.swing.event.ChangeListener`
raw docstring

selected?clj

(selected? this)

Description copied from interface: SingleSelectionModel

returns: true if a value is currently selected - boolean

Description copied from interface: SingleSelectionModel

returns: true if a value is currently selected - `boolean`
raw docstring

set-selected-indexclj

(set-selected-index this index)

Description copied from interface: SingleSelectionModel

index - an int specifying the model selection - int

Description copied from interface: SingleSelectionModel

index - an int specifying the model selection - `int`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close