Uses of Enum
org.jdesktop.beansbinding.AutoBinding.UpdateStrategy
Packages that use AutoBinding.UpdateStrategy
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.UpdateStrategy in org.jdesktop.beansbinding
Methods in org.jdesktop.beansbinding that return AutoBinding.UpdateStrategyModifier and TypeMethodDescriptionAutoBinding.getUpdateStrategy()Returns theAutoBinding'supdate strategy.static AutoBinding.UpdateStrategyReturns the enum constant of this type with the specified name.static AutoBinding.UpdateStrategy[]AutoBinding.UpdateStrategy.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jdesktop.beansbinding with parameters of type AutoBinding.UpdateStrategyModifier 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.Constructors in org.jdesktop.beansbinding with parameters of type AutoBinding.UpdateStrategyModifierConstructorDescriptionprotectedAutoBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, SV> sourceProperty, TS targetObject, Property<TS, TV> targetProperty, String name) Create an instance ofAutoBindingbetween two properties of two objects, with the given update strategy. -
Uses of AutoBinding.UpdateStrategy in org.jdesktop.swingbinding
Methods in org.jdesktop.swingbinding with parameters of type AutoBinding.UpdateStrategyModifier and TypeMethodDescriptionstatic <E> JComboBoxBinding<E,List<E>, JComboBox> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JComboBox targetJComboBox) Creates aJComboBoxBindingfrom direct references to aListandJComboBox.static <E> JComboBoxBinding<E,List<E>, JComboBox> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JComboBox targetJComboBox, String name) Creates a namedJComboBoxBindingfrom direct references to aListandJComboBox.static <E,TS> JComboBoxBinding<E, List<E>, TS> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JComboBox> targetJComboBoxProperty) Creates aJComboBoxBindingfrom a direct reference to aListand an object and property that resolves to aJComboBox.static <E,TS> JComboBoxBinding<E, List<E>, TS> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JComboBox> targetJComboBoxProperty, String name) Creates a namedJComboBoxBindingfrom a direct reference to aListand an object and property that resolves to aJComboBox.static <E,SS> JComboBoxBinding<E, SS, JComboBox> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JComboBox targetJComboBox) Creates aJComboBoxBindingfrom an object and property that resolves to aListand a direct reference to aJComboBox.static <E,SS> JComboBoxBinding<E, SS, JComboBox> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JComboBox targetJComboBox, String name) Creates a namedJComboBoxBindingfrom an object and property that resolves to aListand a direct reference to aJComboBox.static <E,SS, TS> JComboBoxBinding<E, SS, TS> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JComboBox> targetJComboBoxProperty) Creates aJComboBoxBindingfrom an object and property that resolves to aListand an object and property that resolves to aJComboBox.static <E,SS, TS> JComboBoxBinding<E, SS, TS> SwingBindings.createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JComboBox> targetJComboBoxProperty, String name) Creates a namedJComboBoxBindingfrom an object and property that resolves to aListand an object and property that resolves to aJComboBox.static <E> JListBinding<E,List<E>, JList> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JList targetJList) Creates aJListBindingfrom direct references to aListandJList.static <E> JListBinding<E,List<E>, JList> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JList targetJList, String name) Creates a namedJListBindingfrom direct references to aListandJList.static <E,TS> JListBinding<E, List<E>, TS> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JList> targetJListProperty) Creates aJListBindingfrom a direct reference to aListand an object and property that resolves to aJList.static <E,TS> JListBinding<E, List<E>, TS> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JList> targetJListProperty, String name) Creates a namedJListBindingfrom a direct reference to aListand an object and property that resolves to aJList.static <E,SS> JListBinding<E, SS, JList> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JList targetJList) Creates aJListBindingfrom an object and property that resolves to aListand a direct reference to aJList.static <E,SS> JListBinding<E, SS, JList> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JList targetJList, String name) Creates a namedJListBindingfrom an object and property that resolves to aListand a direct reference to aJList.static <E,SS, TS> JListBinding<E, SS, TS> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JList> targetJListProperty) Creates aJListBindingfrom an object and property that resolves to aListand an object and property that resolves to aJList.static <E,SS, TS> JListBinding<E, SS, TS> SwingBindings.createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JList> targetJListProperty, String name) Creates a namedJListBindingfrom an object and property that resolves to aListand an object and property that resolves to aJList.static <E> JTableBinding<E,List<E>, JTable> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JTable targetJTable) Creates aJTableBindingfrom direct references to aListandJTable.static <E> JTableBinding<E,List<E>, JTable> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JTable targetJTable, String name) Creates a namedJTableBindingfrom direct references to aListandJTable.static <E,TS> JTableBinding<E, List<E>, TS> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JTable> targetJTableProperty) Creates aJTableBindingfrom a direct reference to aListand an object and property that resolves to aJTable.static <E,TS> JTableBinding<E, List<E>, TS> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JTable> targetJTableProperty, String name) Creates a namedJTableBindingfrom a direct reference to aListand an object and property that resolves to aJTable.static <E,SS> JTableBinding<E, SS, JTable> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JTable targetJTable) Creates aJTableBindingfrom an object and property that resolves to aListand a direct reference to aJTable.static <E,SS> JTableBinding<E, SS, JTable> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JTable targetJTable, String name) Creates a namedJTableBindingfrom an object and property that resolves to aListand a direct reference to aJTable.static <E,SS, TS> JTableBinding<E, SS, TS> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JTable> targetJTableProperty) Creates aJTableBindingfrom an object and property that resolves to aListand an object and property that resolves to aJTable.static <E,SS, TS> JTableBinding<E, SS, TS> SwingBindings.createJTableBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JTable> targetJTableProperty, String name) Creates a namedJTableBindingfrom an object and property that resolves to aListand an object and property that resolves to aJTable.Constructors in org.jdesktop.swingbinding with parameters of type AutoBinding.UpdateStrategyModifierConstructorDescriptionprotectedJComboBoxBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JComboBox> targetJComboBoxProperty, String name) Constructs an instance ofJComboBoxBinding.protectedJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JList> targetJListProperty, String name) Constructs an instance ofJListBinding.protectedJTableBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JTable> targetJTableProperty, String name) Constructs an instance ofJTableBinding.