Uses of Class
org.jdesktop.beansbinding.AutoBinding
Packages that use AutoBinding
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.
-
Uses of AutoBinding in org.jdesktop.beansbinding
Methods in org.jdesktop.beansbinding that return AutoBindingModifier and TypeMethodDescriptionstatic <SS,
SV, TS, TV>
AutoBinding<SS,SV, TS, TV> Bindings.createAutoBinding
(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, SV> sourceProperty, TS targetObject, Property<TS, TV> targetProperty) Creates an instance ofAutoBinding
that binds a property of a source object to a property of a target object.static <SS,
SV, TS, TV>
AutoBinding<SS,SV, TS, TV> Bindings.createAutoBinding
(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, SV> sourceProperty, TS targetObject, Property<TS, TV> targetProperty, String name) Creates a named instance ofAutoBinding
that binds a property of a source object to a property of a target object.static <SS,
TS, TV> AutoBinding<SS, SS, TS, TV> Bindings.createAutoBinding
(AutoBinding.UpdateStrategy strategy, SS sourceObject, TS targetObject, Property<TS, TV> targetProperty) Creates an instance ofAutoBinding
that binds a source object to a property of a target object.static <SS,
TS, TV> AutoBinding<SS, SS, TS, TV> Bindings.createAutoBinding
(AutoBinding.UpdateStrategy strategy, SS sourceObject, TS targetObject, Property<TS, TV> targetProperty, String name) Creates a named instance ofAutoBinding
that binds a source object to a property of a target object. -
Uses of AutoBinding in org.jdesktop.swingbinding
Subclasses of AutoBinding 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
JTableBinding<E,
SS, TS> Binds aList
of objects to act as the rows of aJTable
.