| Package | Description |
|---|---|
| org.jdesktop.observablecollections |
Provides support for observing changes to collection classes.
|
| Modifier and Type | Method | Description |
|---|---|---|
static <K,V> ObservableMap<K,V> |
ObservableCollections.observableMap(java.util.Map<K,V> map) |
Creates and returns an
ObservableMap wrapping the supplied
Map. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
ObservableMapListener.mapKeyAdded(ObservableMap map,
java.lang.Object key) |
Notification that a key has been added.
|
void |
ObservableMapListener.mapKeyRemoved(ObservableMap map,
java.lang.Object key,
java.lang.Object value) |
Notification that a key has been removed
|
void |
ObservableMapListener.mapKeyValueChanged(ObservableMap map,
java.lang.Object key,
java.lang.Object lastValue) |
Notification that the value of an existing key has changed.
|