Uses of Class
org.jdesktop.beansbinding.Binding
Packages that use Binding
Package
Description
Provides support for defining properties and creating bindings between
sets of two properties.
Provides support for binding to complex Swing components, and
documentation on the interesting Swing properties to bind to.
Private implementation details for Swing binding.
-
Uses of Binding in org.jdesktop.beansbinding
Subclasses of Binding in org.jdesktop.beansbindingModifier and TypeClassDescriptionclass
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 BindingModifier and TypeMethodDescriptionfinal Binding
BindingGroup.getBinding
(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 BindingModifier and TypeMethodDescriptionBindingGroup.getBindings()
Returns a list of allBindings
in this group.Methods in org.jdesktop.beansbinding with parameters of type BindingModifier and TypeMethodDescriptionfinal 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.final 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.void
Notification that the source and target of aBinding
have been made in sync.void
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.swingbindingModifier and TypeClassDescriptionfinal class
JComboBoxBinding<E,
SS, TS> Binds aList
of objects to act as the items of aJComboBox
.final class
JListBinding<E,
SS, TS> Binds aList
of objects to act as the elements of aJList
.final class
DetailBinding
represents a binding between a property of the elements in theJListBinding's
sourceList
, and the values shown in theJList
.final class
JTableBinding<E,
SS, TS> Binds aList
of objects to act as the rows of aJTable
.final class
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
AbstractBindingListener.sourceChanged(org.jdesktop.beansbinding.Binding, org.jdesktop.beansbinding.PropertyStateEvent)
and it will go away soon.