Uses of Class
org.jdesktop.beansbinding.Binding
-
Packages that use Binding Package Description org.jdesktop.beansbinding Provides support for defining properties and creating bindings between sets of two properties.org.jdesktop.swingbinding Provides support for binding to complex Swing components, and documentation on the interesting Swing properties to bind to.org.jdesktop.swingbinding.impl Private implementation details for Swing binding. -
-
Uses of Binding in org.jdesktop.beansbinding
Subclasses of Binding in org.jdesktop.beansbinding Modifier and Type Class Description class
AutoBinding<SS,SV,TS,TV>
An implementation ofBinding
that automatically syncs the source and target by refreshing and saving according to one of three update strategies.Methods in org.jdesktop.beansbinding that return Binding Modifier and Type Method Description Binding
BindingGroup. getBinding(java.lang.String name)
Returns theBinding
in this group with the given name, ornull
if this group doesn't contain aBinding
with the given name.Methods in org.jdesktop.beansbinding that return types with arguments of type Binding Modifier and Type Method Description java.util.List<Binding>
BindingGroup. getBindings()
Returns a list of allBindings
in this group.Methods in org.jdesktop.beansbinding with parameters of type Binding Modifier and Type Method Description void
BindingGroup. addBinding(Binding binding)
Adds aBinding
to this group.void
AbstractBindingListener. bindingBecameBound(Binding binding)
Notification that aBinding
has been bound.void
BindingListener. bindingBecameBound(Binding binding)
Notification that aBinding
has been bound.void
AbstractBindingListener. bindingBecameUnbound(Binding binding)
Notification that aBinding
has been unbound.void
BindingListener. bindingBecameUnbound(Binding binding)
Notification that aBinding
has been unbound.void
BindingGroup. removeBinding(Binding binding)
Removes aBinding
from this group.void
AbstractBindingListener. sourceChanged(Binding binding, PropertyStateEvent event)
Notification that the source property of aBinding
has fired aPropertyStateEvent
for theBinding's
source object.void
BindingListener. sourceChanged(Binding binding, PropertyStateEvent event)
Notification that the source property of aBinding
has fired aPropertyStateEvent
for theBinding's
source object.void
AbstractBindingListener. sourceEdited(Binding binding)
Deprecated.This method has been replaced byAbstractBindingListener.sourceChanged(org.jdesktop.beansbinding.Binding, org.jdesktop.beansbinding.PropertyStateEvent)
and it will go away soon.void
AbstractBindingListener. synced(Binding binding)
Notification that the source and target of aBinding
have been made in sync.void
BindingListener. synced(Binding binding)
Notification that the source and target of aBinding
have been made in sync.void
AbstractBindingListener. syncFailed(Binding binding, Binding.SyncFailure failure)
Notification that theBinding
attempted to sync the source and target, but the sync failed.void
BindingListener. syncFailed(Binding binding, Binding.SyncFailure failure)
Notification that theBinding
attempted to sync the source and target, but the sync failed.void
AbstractBindingListener. targetChanged(Binding binding, PropertyStateEvent event)
Notification that the target property of aBinding
has fired aPropertyStateEvent
for theBinding's
target object.void
BindingListener. targetChanged(Binding binding, PropertyStateEvent event)
Notification that the target property of aBinding
has fired aPropertyStateEvent
for theBinding's
target object.void
AbstractBindingListener. targetEdited(Binding binding)
Deprecated.This method has been replaced byAbstractBindingListener.targetChanged(org.jdesktop.beansbinding.Binding, org.jdesktop.beansbinding.PropertyStateEvent)
and it will go away soon. -
Uses of Binding in org.jdesktop.swingbinding
Subclasses of Binding in org.jdesktop.swingbinding Modifier and Type Class Description class
JComboBoxBinding<E,SS,TS>
Binds aList
of objects to act as the items of aJComboBox
.class
JListBinding<E,SS,TS>
Binds aList
of objects to act as the elements of aJList
.class
JListBinding.DetailBinding
DetailBinding
represents a binding between a property of the elements in theJListBinding's
sourceList
, and the values shown in theJList
.class
JTableBinding<E,SS,TS>
Binds aList
of objects to act as the rows of aJTable
.class
JTableBinding.ColumnBinding
ColumnBinding
represents a binding between a property of the elements in theJTableBinding's
sourceList
, and a column in the table. -
Uses of Binding in org.jdesktop.swingbinding.impl
Subclasses of Binding in org.jdesktop.swingbinding.impl Modifier and Type Class Description class
AbstractColumnBinding
-