Interface java.awt.swing.SingleSelectionModel
- Implementing Classes:
- DefaultSingleSelectionModel
- public interface SingleSelectionModel
A model that supports at most one indexed selection.
getSelectedIndex
public int getSelectedIndex()
- Returns:
- the model's selection, or -1 if there is no selection.
- See Also:
- setSelectedIndex
setSelectedIndex
public void setSelectedIndex(int index)
- Sets the model's selected index to index.
Notifies any listeners if the model changes
- See Also:
- getSelectedIndex, addChangeListener
clearSelection
public void clearSelection()
- Clears the selection (to -1).
isSelected
public boolean isSelected()
- Returns true if the selection model currently has a selected value.
addChangeListener
public void addChangeListener(ChangeListener listener)
- Adds listener as a listener to changes in the model.
removeChangeListener
public void removeChangeListener(ChangeListener listener)
- Removes listener as a listener to changes in the model.
Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.