| Package | Description |
|---|---|
| org.jdesktop.observablecollections |
Provides support for observing changes to collection classes.
|
| org.jdesktop.swingbinding.impl |
Private implementation details for Swing binding.
|
| Modifier and Type | Method | Description |
|---|---|---|
ObservableList<E> |
ObservableCollections.ObservableListHelper.getObservableList() |
Returns the
ObservableList. |
static <E> ObservableList<E> |
ObservableCollections.observableList(java.util.List<E> list) |
Creates and returns an
ObservableList wrapping the supplied
List. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
ObservableListListener.listElementPropertyChanged(ObservableList list,
int index) |
Notification than a property of an element in this list has changed.
|
void |
ObservableListListener.listElementReplaced(ObservableList list,
int index,
java.lang.Object oldElement) |
Notification that an element has been replaced by another in the list.
|
void |
ObservableListListener.listElementsAdded(ObservableList list,
int index,
int length) |
Notification that elements have been added to the list.
|
void |
ObservableListListener.listElementsRemoved(ObservableList list,
int index,
java.util.List oldElements) |
Notification that elements have been removed from the list.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
ListBindingManager.listElementPropertyChanged(ObservableList list,
int index) |
|
void |
ListBindingManager.listElementReplaced(ObservableList list,
int index,
java.lang.Object oldElement) |
|
void |
ListBindingManager.listElementsAdded(ObservableList list,
int index,
int length) |
|
void |
ListBindingManager.listElementsRemoved(ObservableList list,
int index,
java.util.List elements) |