Liking cljdoc? Tell your friends :D

javax.swing.event.ListSelectionEvent

An event that characterizes a change in selection. The change is limited to a a single inclusive interval. The selection of at least one index within the range will have changed. A decent ListSelectionModel implementation will keep the range as small as possible. ListSelectionListeners will generally query the source of the event for the new selected status of each potentially changed row.

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.

An event that characterizes a change in selection. The change is limited to a
a single inclusive interval. The selection of at least one index within the
range will have changed. A decent ListSelectionModel implementation
will keep the range as small as possible. ListSelectionListeners will
generally query the source of the event for the new selected status of each
potentially changed row.

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

->list-selection-eventclj

(->list-selection-event source first-index last-index is-adjusting)

Constructor.

Represents a change in selection status between firstIndex and lastIndex, inclusive. firstIndex is less than or equal to lastIndex. The selection of at least one index within the range will have changed.

source - java.lang.Object first-index - the first index in the range, <= lastIndex - int last-index - the last index in the range, >= firstIndex - int is-adjusting - whether or not this is one in a series of multiple events, where changes are still being made - boolean

Constructor.

Represents a change in selection status between firstIndex and
 lastIndex, inclusive. firstIndex is less than or equal to
 lastIndex. The selection of at least one index within the range will
 have changed.

source - `java.lang.Object`
first-index - the first index in the range, <= lastIndex - `int`
last-index - the last index in the range, >= firstIndex - `int`
is-adjusting - whether or not this is one in a series of multiple events, where changes are still being made - `boolean`
raw docstring

get-first-indexclj

(get-first-index this)

Returns the index of the first row whose selection may have changed. getFirstIndex() <= getLastIndex()

returns: the first row whose selection value may have changed, where zero is the first row - int

Returns the index of the first row whose selection may have changed.
 getFirstIndex() <= getLastIndex()

returns: the first row whose selection value may have changed,
         where zero is the first row - `int`
raw docstring

get-last-indexclj

(get-last-index this)

Returns the index of the last row whose selection may have changed. getLastIndex() >= getFirstIndex()

returns: the last row whose selection value may have changed, where zero is the first row - int

Returns the index of the last row whose selection may have changed.
 getLastIndex() >= getFirstIndex()

returns: the last row whose selection value may have changed,
         where zero is the first row - `int`
raw docstring

get-value-is-adjusting?clj

(get-value-is-adjusting? this)

Returns whether or not this is one in a series of multiple events, where changes are still being made. See the documentation for ListSelectionModel.setValueIsAdjusting(boolean) for more details on how this is used.

returns: true if this is one in a series of multiple events, where changes are still being made - boolean

Returns whether or not this is one in a series of multiple events,
 where changes are still being made. See the documentation for
 ListSelectionModel.setValueIsAdjusting(boolean) for
 more details on how this is used.

returns: true if this is one in a series of multiple events,
         where changes are still being made - `boolean`
raw docstring

to-stringclj

(to-string this)

Returns a String that displays and identifies this object's properties.

returns: a String representation of this object - java.lang.String

Returns a String that displays and identifies this
 object's properties.

returns: a String representation of this object - `java.lang.String`
raw docstring

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

× close