See: Description
| Interface | Description |
|---|---|
| ListChangeListener<E> |
Classes that want to listen to modifications applied to an instance of
List (e.g. |
| Class | Description |
|---|---|
| ListAddEvent<E> |
Event that indicates that one or more new elements have been add to an implementation of
List. |
| ListChangeAdapter<E> |
Adapter class that provides empty default implementation for all events.
|
| ListChangeEvent<E> |
An event object indicating that an instance of
List has been modified. |
| ListMultipleChangesEvent<E> |
An event object indicating that multiple modifications of an instance of
List have happened. |
| ListRemoveEvent<L,E> |
Event that indicates that one or more elements have been removed from an implementation of
List. |
| ListReplaceEvent<E> |
Event that indicates that one or more new elements will be or have been add to an implementation of
List. |
| ObservableList<E> |
Decorator for an instance of
List that allows to track modifications of the underlying list
using an ListChangeListener. |
ObservableList).