Example usage for Java javax.swing.event ListSelectionEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
ListSelectionEvent(Object source, int firstIndex, int lastIndex, boolean isAdjusting) Represents a change in selection status between firstIndex and lastIndex , inclusive. |
int | getFirstIndex() Returns the index of the first row whose selection may have changed. |
int | getLastIndex() Returns the index of the last row whose selection may have changed. |
Object | getSource() The object on which the Event initially occurred. |
boolean | getValueIsAdjusting() Returns whether or not this is one in a series of multiple events, where changes are still being made. |
String | toString() Returns a String that displays and identifies this object's properties. |