| 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.
|
| AutoBinding<SS,SV,TS,TV> |
An implementation of Binding that automatically syncs the source
and target by refreshing and saving according to one of three update
strategies.
|
| BeanProperty<S,V> |
An implementation of Property that uses a simple dot-separated path
syntax to address Java Beans properties of source objects.
|
| Binding<SS,SV,TS,TV> |
Binding is an abstract class that represents the concept of a
binding between two properties, typically of two objects, and contains
methods for explicitly syncing the values of the two properties.
|
| Binding.CST |
|
| Binding.SyncFailure |
SyncFailure represents a failure to sync (save or refresh) a
Binding.
|
| Binding.ValueResult<V> |
|
| BindingGroup |
BindingGroup allows you to create a group of Bindings
and operate on and/or track state changes to the Bindings as
a group.
|
| Bindings |
A factory class for creating instances of the concrete Binding
implementations provided by this package.
|
| Converter<S,T> |
Converter is responsible for converting a value from one type
to another.
|
| ELProperty<S,V> |
An implementation of Property that allows Java Beans properties of
source objects to be addressed using a simple dot-separated path syntax
within an EL expression.
|
| ObjectProperty<S> |
An immutable, read-only, Property implementation whose getValue
method returns the source object that it is given.
|
| Property<S,V> |
Property defines a uniform way to access the value of a property.
|
| PropertyHelper<S,V> |
An abstract subclass of Property that helps with the management of
PropertyStateListeners by implementing the methods for adding, removing,
and getting listeners.
|
| PropertyStateEvent |
An event characterizing a change in a Property's state for
a particular source object.
|
| Validator<T> |
Validator is responsible for validating the value from the target of
a Binding.
|