| Package | Description |
|---|---|
| org.jdesktop.beansbinding |
Provides support for defining properties and creating bindings between
sets of two properties.
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
AbstractBindingListener |
An abstract subclass of
BindingListener that simplifies writing
BindingListeners by allowing you to extend this class and re-implement
only the methods you care about. |
| Modifier and Type | Method | Description |
|---|---|---|
BindingListener[] |
Binding.getBindingListeners() |
Returns the list of
BindingListeners registered on this
Binding. |
BindingListener[] |
BindingGroup.getBindingListeners() |
Returns the list of
BindingListeners registered on this
group. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
Binding.addBindingListener(BindingListener listener) |
Adds a
BindingListener to be notified of changes to this Binding. |
void |
BindingGroup.addBindingListener(BindingListener listener) |
Adds a
BindingListener to be notified of all BindingListener
notifications fired by any Binding in the group. |
void |
Binding.removeBindingListener(BindingListener listener) |
Removes a
BindingListener from the Binding. |
void |
BindingGroup.removeBindingListener(BindingListener listener) |
Removes a
BindingListener from the group. |