Uses of Class
org.jdesktop.swingbinding.JListBinding
Packages that use JListBinding
Package
Description
Provides support for binding to complex Swing components, and
documentation on the interesting Swing properties to bind to.
-
Uses of JListBinding in org.jdesktop.swingbinding
Methods in org.jdesktop.swingbinding that return JListBindingModifier and TypeMethodDescriptionstatic <E> JListBinding<E,
List<E>, JList> SwingBindings.createJListBinding
(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JList targetJList) Creates aJListBinding
from direct references to aList
andJList
.static <E> JListBinding<E,
List<E>, JList> SwingBindings.createJListBinding
(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JList targetJList, String name) Creates a namedJListBinding
from direct references to aList
andJList
.static <E,
TS> JListBinding<E, List<E>, TS> SwingBindings.createJListBinding
(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JList> targetJListProperty) Creates aJListBinding
from a direct reference to aList
and 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 namedJListBinding
from a direct reference to aList
and 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 aJListBinding
from an object and property that resolves to aList
and 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 namedJListBinding
from an object and property that resolves to aList
and 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 aJListBinding
from an object and property that resolves to aList
and 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 namedJListBinding
from an object and property that resolves to aList
and an object and property that resolves to aJList
.