本文整理汇总了Java中org.jdesktop.beansbinding.AutoBinding.UpdateStrategy方法的典型用法代码示例。如果您正苦于以下问题:Java AutoBinding.UpdateStrategy方法的具体用法?Java AutoBinding.UpdateStrategy怎么用?Java AutoBinding.UpdateStrategy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jdesktop.beansbinding.AutoBinding
的用法示例。
在下文中一共展示了AutoBinding.UpdateStrategy方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createJListBinding
import org.jdesktop.beansbinding.AutoBinding; //导入方法依赖的package包/类
/**
* Creates a {@code JListBinding} from direct references to a {@code List} and {@code JList}.
*
* @param strategy the update strategy
* @param sourceList the source {@code List}
* @param targetJList the target {@code JList}
* @return the {@code JTableBinding}
*/
public static <E> JListBinding<E, List<E>, JList> createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JList targetJList) {
return new JListBinding<E, List<E>, JList>(strategy, sourceList, ObjectProperty.<List<E>>create(), targetJList, ObjectProperty.<JList>create(), null);
}
示例2: createJComboBoxBinding
import org.jdesktop.beansbinding.AutoBinding; //导入方法依赖的package包/类
/**
* Creates a {@code JComboBoxBinding} from an object and property that resolves to a {@code List} and an object and property that resolves to a {@code JComboBox}.
*
* @param strategy the update strategy
* @param sourceObject the source object
* @param sourceListProperty a property on the source object that resolves to a {@code List}
* @param targetObject the target object
* @param targetJComboBoxProperty a property on the target object that resolves to a {@code JComboBox}
* @return the {@code JComboBoxBinding}
* @throws IllegalArgumentException if {@code sourceListProperty} or {@code targetJComboBoxProperty} is {@code null}
*/
public static <E, SS, TS> JComboBoxBinding<E, SS, TS> createJComboBoxBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JComboBox> targetJComboBoxProperty) {
return new JComboBoxBinding<E, SS, TS>(strategy, sourceObject, sourceListProperty, targetObject, targetJComboBoxProperty, null);
}
示例3: createJTableBinding
import org.jdesktop.beansbinding.AutoBinding; //导入方法依赖的package包/类
/**
* Creates a {@code JTableBinding} from direct references to a {@code List} and {@code JTable}.
*
* @param strategy the update strategy
* @param sourceList the source {@code List}
* @param targetJTable the target {@code JTable}
* @return the {@code JTableBinding}
*/
public static <E> JTableBinding<E, List<E>, JTable> createJTableBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JTable targetJTable) {
return new JTableBinding<E, List<E>, JTable>(strategy, sourceList, ObjectProperty.<List<E>>create(), targetJTable, ObjectProperty.<JTable>create(), null);
}