Interface | Description |
---|---|
ListDataListener |
Classes that need to be notified of changes in the contents of a list
must implement this interface.
|
ListSelectionListener | |
TableModelListener |
This defines the interface for an object that listens for changes in a
TableModel.
|
TreeModelListener |
This defines the interface for an object that listens for changes in a
TreeModel.
|
TreeSelectionListener |
The listener that's notified when the selection in a TreeSelectionModel changes.
|
Class | Description |
---|---|
ListDataEvent |
An event that characterizes a change in a list.
|
ListSelectionEvent |
An event that characterizes a change in the current selection.
|
SwingPropertyChangeSupport |
This subclass of java.beans.PropertyChangeSupport is identical
in functionality -- it sacrifices thread-safety (not a Swing
concern) for reduce memory consumption, which helps performance
(both big Swing concerns).
|
TableModelEvent |
This event is fired when the data in a table changes.
|
TreeModelEvent | |
TreeSelectionEvent |
An event that characterizes a change in the current selection.
|