public class ListSelectionEvent
extends java.util.EventObject
Constructor and Description |
---|
ListSelectionEvent(java.lang.Object source_,
int firstIndex_,
int lastIndex_,
boolean isAdjusting_)
Construct a ListSelectionEvent.
|
Modifier and Type | Method and Description |
---|---|
int |
getFirstIndex()
Get the index of the first row that changed
|
int |
getLastIndex()
Get the index of the last row that changed
|
public ListSelectionEvent(java.lang.Object source_, int firstIndex_, int lastIndex_, boolean isAdjusting_)
source_
- the object that initiated this event (usually a
DefaultListSelectionModel).firstIndex_
- the index of the first row whose selection status has
changed.lastIndex_
- the index of the last row whose selection status has
changed.isAdjusting_
- not used in CHARVA.