Example usage for Java javax.swing.event ListDataEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
int | CONTENTS_CHANGED Identifies one or more changes in the lists contents. |
int | INTERVAL_ADDED Identifies the addition of one or more contiguous items to the list |
int | INTERVAL_REMOVED Identifies the removal of one or more contiguous items from the list |
ListDataEvent(Object source, int type, int index0, int index1) Constructs a ListDataEvent object. |
int | getIndex0() Returns the lower index of the range. |
int | getIndex1() Returns the upper index of the range. |
Object | getSource() The object on which the Event initially occurred. |
int | getType() Returns the event type. |