javax.swing

Interface ListSelectionModel

public interface ListSelectionModel

A model that tracks the selection status of a list of items. Each item in the list is identified by a zero-based index only, so the model can be used to track the selection status of any type of list. The model supports three modes: The model uses an event notification mechanism to notify listeners (see {@link ListSelectionListener}) about updates to the selection model.

This model is used to track row selections in the {@link JList} component, and row and column selections in the {@link JTable} component.

Field Summary
intMULTIPLE_INTERVAL_SELECTION
A selection mode in which any combination of items can be selected.
intSINGLE_INTERVAL_SELECTION
A selection mode in which a single interval can be selected (an interval is a range containing one or more contiguous items).
intSINGLE_SELECTION
A selection mode in which only one item can be selected.
Method Summary
voidaddListSelectionListener(ListSelectionListener listener)
Registers a listener with the model so that it receives notification of changes to the model.
voidaddSelectionInterval(int anchor, int lead)
Marks the items in the specified interval as selected.
voidclearSelection()
Clears the current selection from the model.
intgetAnchorSelectionIndex()
Returns the index of the anchor item.
intgetLeadSelectionIndex()
Returns the index of the lead item.
intgetMaxSelectionIndex()
Returns the highest selected index, or -1 if there is no selection.
intgetMinSelectionIndex()
Returns the lowest selected index, or -1 if there is no selection.
intgetSelectionMode()
Returns the selection mode, which is one of {@link #SINGLE_SELECTION}, {@link #SINGLE_INTERVAL_SELECTION} and {@link #MULTIPLE_INTERVAL_SELECTION}.
booleangetValueIsAdjusting()
Returns a flag that is passed to registered listeners when changes are made to the model.
voidinsertIndexInterval(int index, int length, boolean before)
Inserts a new interval containing length items at the specified index (the before flag indicates whether the range is inserted before or after the existing item at index).
booleanisSelectedIndex(int index)
Returns true if the specified item is selected, and false otherwise.
booleanisSelectionEmpty()
Returns true if there is no selection, and false otherwise.
voidremoveIndexInterval(int index0, int index1)
Removes the items in the specified range (inclusive) from the selection model.
voidremoveListSelectionListener(ListSelectionListener listener)
Deregisters a listener so that it no longer receives notification of changes to the model.
voidremoveSelectionInterval(int anchor, int lead)
Marks the items in the specified interval as not selected.
voidsetAnchorSelectionIndex(int index)
Sets the index of the anchor item.
voidsetLeadSelectionIndex(int index)
Sets the index of the lead item.
voidsetSelectionInterval(int anchor, int lead)
Sets the selection interval to the specified range (note that anchor can be less than, equal to, or greater than lead).
voidsetSelectionMode(int mode)
Sets the selection mode.
voidsetValueIsAdjusting(boolean valueIsAdjusting)
Sets the flag that is passed to listeners for each change notification.

Field Detail

MULTIPLE_INTERVAL_SELECTION

public int MULTIPLE_INTERVAL_SELECTION
A selection mode in which any combination of items can be selected.

See Also: ListSelectionModel

SINGLE_INTERVAL_SELECTION

public int SINGLE_INTERVAL_SELECTION
A selection mode in which a single interval can be selected (an interval is a range containing one or more contiguous items).

See Also: ListSelectionModel

SINGLE_SELECTION

public int SINGLE_SELECTION
A selection mode in which only one item can be selected.

See Also: ListSelectionModel

Method Detail

addListSelectionListener

public void addListSelectionListener(ListSelectionListener listener)
Registers a listener with the model so that it receives notification of changes to the model.

Parameters: listener the listener (null ignored).

See Also: removeListSelectionListener

addSelectionInterval

public void addSelectionInterval(int anchor, int lead)
Marks the items in the specified interval as selected. The behaviour of this method depends on the selection mode: Note that anchor can be less than, equal to, or greater than lead.

Parameters: anchor the index of the anchor item lead the index of the lead item.

clearSelection

public void clearSelection()
Clears the current selection from the model. If the selection state changes (that is, the existing selection is non-empty) a {@link ListSelectionEvent} should be sent to all registered listeners.

FIXME: what happens to the anchor and lead selection indices (the spec is silent about this)? See:

http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4334792

getAnchorSelectionIndex

public int getAnchorSelectionIndex()
Returns the index of the anchor item.

Returns: The index of the anchor item.

See Also: ListSelectionModel

getLeadSelectionIndex

public int getLeadSelectionIndex()
Returns the index of the lead item.

Returns: The index of the lead item.

See Also: ListSelectionModel

getMaxSelectionIndex

public int getMaxSelectionIndex()
Returns the highest selected index, or -1 if there is no selection.

Returns: The highest selected index.

See Also: getMinSelectionIndex

getMinSelectionIndex

public int getMinSelectionIndex()
Returns the lowest selected index, or -1 if there is no selection.

Returns: The lowest selected index.

See Also: getMaxSelectionIndex

getSelectionMode

public int getSelectionMode()
Returns the selection mode, which is one of {@link #SINGLE_SELECTION}, {@link #SINGLE_INTERVAL_SELECTION} and {@link #MULTIPLE_INTERVAL_SELECTION}.

Returns: The selection mode.

See Also: ListSelectionModel

getValueIsAdjusting

public boolean getValueIsAdjusting()
Returns a flag that is passed to registered listeners when changes are made to the model. See the description for {@link #setValueIsAdjusting(boolean)} for more information.

Returns: The flag.

insertIndexInterval

public void insertIndexInterval(int index, int length, boolean before)
Inserts a new interval containing length items at the specified index (the before flag indicates whether the range is inserted before or after the existing item at index). FIXME: What is the selection status of the new items? Bug 4870694. FIXME: What event is generated?

Parameters: index the index of the item. length the number of items in the interval to be inserted. before if true, the interval should be inserted before index, otherwise it is inserted after.

See Also: ListSelectionModel

isSelectedIndex

public boolean isSelectedIndex(int index)
Returns true if the specified item is selected, and false otherwise. Special note: if index is negative, this method should return false (no exception should be thrown).

Parameters: index the item index (zero-based).

Returns: true if the specified item is selected, and false otherwise.

isSelectionEmpty

public boolean isSelectionEmpty()
Returns true if there is no selection, and false otherwise.

Returns: true if there is no selection, and false otherwise.

removeIndexInterval

public void removeIndexInterval(int index0, int index1)
Removes the items in the specified range (inclusive) from the selection model. This method should be called when an interval is deleted from the underlying list. FIXME: what happens to the lead and anchor indices if they are part of the range that is removed? FIXME: what event is generated

Parameters: index0 XXX index1 XXX

See Also: ListSelectionModel

removeListSelectionListener

public void removeListSelectionListener(ListSelectionListener listener)
Deregisters a listener so that it no longer receives notification of changes to the model. If the specified listener is not registered with the model, or is null, this method does nothing.

Parameters: listener the listener (null ignored).

See Also: addListSelectionListener

removeSelectionInterval

public void removeSelectionInterval(int anchor, int lead)
Marks the items in the specified interval as not selected. The behaviour of this method depends on the selection mode: Note that anchor can be less than, equal to, or greater than lead.

Parameters: anchor the index of the anchor item lead the index of the lead item.

setAnchorSelectionIndex

public void setAnchorSelectionIndex(int index)
Sets the index of the anchor item.

Parameters: index the item index.

See Also: getAnchorSelectionIndex

setLeadSelectionIndex

public void setLeadSelectionIndex(int index)
Sets the index of the lead item.

Parameters: index the item index.

See Also: getLeadSelectionIndex

setSelectionInterval

public void setSelectionInterval(int anchor, int lead)
Sets the selection interval to the specified range (note that anchor can be less than, equal to, or greater than lead). If this results in the selection being changed, a {@link ListSelectionEvent} is sent to all registered listeners.

If the selection mode is {@link #SINGLE_SELECTION}, only the lead item is selected.

Parameters: anchor the anchor index. lead the lead index.

setSelectionMode

public void setSelectionMode(int mode)
Sets the selection mode.

FIXME: The spec is silent about what happens to existing selections, for example when changing from an interval selection to single selection.

Parameters: mode one of {@link #SINGLE_SELECTION}, {@link #SINGLE_INTERVAL_SELECTION} and {@link #MULTIPLE_INTERVAL_SELECTION}.

Throws: IllegalArgumentException if mode is not one of the specified values.

See Also:

setValueIsAdjusting

public void setValueIsAdjusting(boolean valueIsAdjusting)
Sets the flag that is passed to listeners for each change notification. If a sequence of changes is made to the selection model, this flag should be set to true at the start of the sequence, and false for the last change - this gives listeners the option to ignore interim changes if that is more efficient.

Parameters: valueIsAdjusting the flag value.

See Also: getValueIsAdjusting