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 ofAutoBindingthat 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 ofAutoBindingthat 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 ofAutoBindingthat 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 ofAutoBindingthat 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 classJComboBoxBinding<E,SS, TS> Binds aListof objects to act as the items of aJComboBox.final classJListBinding<E,SS, TS> Binds aListof objects to act as the elements of aJList.final classJTableBinding<E,SS, TS> Binds aListof objects to act as the rows of aJTable.