Methods Summary |
---|
public void | addListSelectionListener(javax.swing.event.ListSelectionListener x)Add a listener to the list that's notified each time a change
to the selection occurs.
|
public void | addSelectionInterval(int index0, int index1)Change the selection to be the set union of the current selection
and the indices between index0 and index1 inclusive. If this represents
a change to the current selection, then notify each
ListSelectionListener. Note that index0 doesn't have to be less
than or equal to index1.
|
public void | clearSelection()Change the selection to the empty set. If this represents
a change to the current selection then notify each ListSelectionListener.
|
public int | getAnchorSelectionIndex()Return the first index argument from the most recent call to
setSelectionInterval(), addSelectionInterval() or removeSelectionInterval().
The most recent index0 is considered the "anchor" and the most recent
index1 is considered the "lead". Some interfaces display these
indices specially, e.g. Windows95 displays the lead index with a
dotted yellow outline.
|
public int | getLeadSelectionIndex()Return the second index argument from the most recent call to
setSelectionInterval(), addSelectionInterval() or removeSelectionInterval().
|
public int | getMaxSelectionIndex()Returns the last selected index or -1 if the selection is empty.
|
public int | getMinSelectionIndex()Returns the first selected index or -1 if the selection is empty.
|
public int | getSelectionMode()Returns the current selection mode.
|
public boolean | getValueIsAdjusting()Returns true if the value is undergoing a series of changes.
|
public void | insertIndexInterval(int index, int length, boolean before)Insert length indices beginning before/after index. This is typically
called to sync the selection model with a corresponding change
in the data model.
|
public boolean | isSelectedIndex(int index)Returns true if the specified index is selected.
|
public boolean | isSelectionEmpty()Returns true if no indices are selected.
|
public void | removeIndexInterval(int index0, int index1)Remove the indices in the interval index0,index1 (inclusive) from
the selection model. This is typically called to sync the selection
model width a corresponding change in the data model.
|
public void | removeListSelectionListener(javax.swing.event.ListSelectionListener x)Remove a listener from the list that's notified each time a
change to the selection occurs.
|
public void | removeSelectionInterval(int index0, int index1)Change the selection to be the set difference of the current selection
and the indices between index0 and index1 inclusive. If this represents
a change to the current selection, then notify each
ListSelectionListener. Note that index0 doesn't have to be less
than or equal to index1.
|
public void | setAnchorSelectionIndex(int index)Set the anchor selection index.
|
public void | setLeadSelectionIndex(int index)Set the lead selection index.
|
public void | setSelectionInterval(int index0, int index1)Change the selection to be between index0 and index1 inclusive.
If this represents a change to the current selection, then
notify each ListSelectionListener. Note that index0 doesn't have
to be less than or equal to index1.
|
public void | setSelectionMode(int selectionMode)Set the selection mode. The following selectionMode values are allowed:
-
SINGLE_SELECTION
Only one list index can be selected at a time. In this
mode the setSelectionInterval and addSelectionInterval
methods are equivalent, and only the second index
argument (the "lead index") is used.
-
SINGLE_INTERVAL_SELECTION
One contiguous index interval can be selected at a time.
In this mode setSelectionInterval and addSelectionInterval
are equivalent.
-
MULTIPLE_INTERVAL_SELECTION
In this mode, there's no restriction on what can be selected.
|
public void | setValueIsAdjusting(boolean valueIsAdjusting)This property is true if upcoming changes to the value
of the model should be considered a single event. For example
if the model is being updated in response to a user drag,
the value of the valueIsAdjusting property will be set to true
when the drag is initiated and be set to false when
the drag is finished. This property allows listeners to
to update only when a change has been finalized, rather
than always handling all of the intermediate values.
|