当前位置: 首页>>代码示例>>Java>>正文


Java AutoBinding.UpdateStrategy方法代码示例

本文整理汇总了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);
}
 
开发者ID:4refr0nt,项目名称:ESPlorer,代码行数:12,代码来源:SwingBindings.java

示例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);
}
 
开发者ID:4refr0nt,项目名称:ESPlorer,代码行数:15,代码来源:SwingBindings.java

示例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);
}
 
开发者ID:4refr0nt,项目名称:ESPlorer,代码行数:12,代码来源:SwingBindings.java


注:本文中的org.jdesktop.beansbinding.AutoBinding.UpdateStrategy方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。