public class ExBindings extends Object
| Constructor and Description |
|---|
ExBindings() |
| Modifier and Type | Method and Description |
|---|---|
static <E,T> Object |
bindContent(List<T> list1,
javafx.collections.ObservableList<? extends E> list2,
ContentConverter<E,T> converter)
Binds the content of two lists.
|
static <E,T> Object |
bindContentBidirectional(javafx.collections.ObservableList<E> list1,
javafx.collections.ObservableList<T> list2,
BiContentConverter<E,T> converter)
Binds the content of two lists in both directions.
|
static void |
unbindContent(Object obj1,
Object obj2)
Unbinds two bindable objects.
|
static void |
unbindContentBidirectional(Object obj1,
Object obj2)
Unbinds a bidirectional binding.
|
public static <E,T> Object bindContentBidirectional(javafx.collections.ObservableList<E> list1, javafx.collections.ObservableList<T> list2, BiContentConverter<E,T> converter)
E - The type for the first list.T - The type for the second list.list1 - The first list.list2 - The second list.converter - The bidirectional converter.public static void unbindContentBidirectional(Object obj1, Object obj2)
obj1 - The first object.obj2 - The second object.public static <E,T> Object bindContent(List<T> list1, javafx.collections.ObservableList<? extends E> list2, ContentConverter<E,T> converter)
E - The type for the first list.T - The type for the second list.list1 - The first list.list2 - The second list.converter - The converter.Copyright © 2015–2018 Bridje Framework. All rights reserved.