亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? swingbindings.java

?? java屬性邦定的(JSR-295)的一個實現
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 * Copyright (C) 2007 Sun Microsystems, Inc. All rights reserved. Use is
 * subject to license terms.
 */

package org.jdesktop.swingbinding;

import java.util.*;
import javax.swing.*;
import org.jdesktop.beansbinding.AutoBinding;
import org.jdesktop.beansbinding.ObjectProperty;
import org.jdesktop.beansbinding.Property;

/**
 * A factory class for creating instances of the custom Swing {@code Binding}
 * implementations provided by this package. See the
 * <a href="package-summary.html">package summary</a> for full details on
 * binding to Swing components.
 *
 * @author Shannon Hickey
 */
public class SwingBindings {
    
    private SwingBindings() {}
    
    /**
     * 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);
    }
    
    /**
     * Creates a named {@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 JListBinding}
     */
    public static <E> JListBinding<E, List<E>, JList> createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, JList targetJList, String name) {
        return new JListBinding<E, List<E>, JList>(strategy, sourceList, ObjectProperty.<List<E>>create(), targetJList, ObjectProperty.<JList>create(), name);
    }
    
    
    /**
     * Creates a {@code JListBinding} from an object and property that resolves to a {@code List} and a direct reference to a {@code JList}.
     *
     * @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 targetJList the target {@code JList}
     * @return the {@code JListBinding}
     * @throws IllegalArgumentException if {@code sourceListProperty} is {@code null}
     */
    public static <E, SS> JListBinding<E, SS, JList> createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JList targetJList) {
        return new JListBinding<E, SS, JList>(strategy, sourceObject, sourceListProperty, targetJList, ObjectProperty.<JList>create(), null);
    }
    
    /**
     * Creates a named {@code JListBinding} from an object and property that resolves to a {@code List} and a direct reference to a {@code JList}.
     *
     * @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 targetJList the target {@code JList}
     * @return the {@code JListBinding}
     * @throws IllegalArgumentException if {@code sourceListProperty} is {@code null}
     */
    public static <E, SS> JListBinding<E, SS, JList> createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JList targetJList, String name) {
        return new JListBinding<E, SS, JList>(strategy, sourceObject, sourceListProperty, targetJList, ObjectProperty.<JList>create(), name);
    }
    
    
    /**
     * Creates a {@code JListBinding} from a direct reference to a {@code List} and an object and property that resolves to a {@code JList}.
     *
     * @param strategy the update strategy
     * @param sourceList the source {@code List}
     * @param targetObject the target object
     * @param targetJListProperty a property on the target object that resolves to a {@code JList}
     * @return the {@code JListBinding}
     * @throws IllegalArgumentException if {@code targetJListProperty} is {@code null}
     */
    public static <E, TS> JListBinding<E, List<E>, TS> createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JList> targetJListProperty) {
        return new JListBinding<E, List<E>, TS>(strategy, sourceList, ObjectProperty.<List<E>>create(), targetObject, targetJListProperty, null);
    }
    
    /**
     * Creates a named {@code JListBinding} from a direct reference to a {@code List} and an object and property that resolves to a {@code JList}.
     *
     * @param strategy the update strategy
     * @param sourceList the source {@code List}
     * @param targetObject the target object
     * @param targetJListProperty a property on the target object that resolves to a {@code JList}
     * @return the {@code JListBinding}
     * @throws IllegalArgumentException if {@code targetJListProperty} is {@code null}
     */
    public static <E, TS> JListBinding<E, List<E>, TS> createJListBinding(AutoBinding.UpdateStrategy strategy, List<E> sourceList, TS targetObject, Property<TS, ? extends JList> targetJListProperty, String name) {
        return new JListBinding<E, List<E>, TS>(strategy, sourceList, ObjectProperty.<List<E>>create(), targetObject, targetJListProperty, name);
    }
    
    
    /**
     * Creates a {@code JListBinding} from an object and property that resolves to a {@code List} and an object and property that resolves to a {@code JList}.
     *
     * @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 targetJListProperty a property on the target object that resolves to a {@code JList}
     * @return the {@code JListBinding}
     * @throws IllegalArgumentException if {@code sourceListProperty} or {@code targetJListProperty} is {@code null}
     */
    public static <E, SS, TS> JListBinding<E, SS, TS> createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JList> targetJListProperty) {
        return new JListBinding<E, SS, TS>(strategy, sourceObject, sourceListProperty, targetObject, targetJListProperty, null);
    }
    
    /**
     * Creates a named {@code JListBinding} from an object and property that resolves to a {@code List} and an object and property that resolves to a {@code JList}.
     *
     * @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 targetJListProperty a property on the target object that resolves to a {@code JList}
     * @return the {@code JListBinding}
     * @throws IllegalArgumentException if {@code sourceListProperty} or {@code targetJListProperty} is {@code null}
     */
    public static <E, SS, TS> JListBinding<E, SS, TS> createJListBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, TS targetObject, Property<TS, ? extends JList> targetJListProperty, String name) {
        return new JListBinding<E, SS, TS>(strategy, sourceObject, sourceListProperty, targetObject, targetJListProperty, name);
    }
    
    
    
    /**
     * 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);
    }
    
    /**
     * Creates a named {@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, String name) {
        return new JTableBinding<E, List<E>, JTable>(strategy, sourceList, ObjectProperty.<List<E>>create(), targetJTable, ObjectProperty.<JTable>create(), name);
    }
    
    
    /**
     * Creates a {@code JTableBinding} from an object and property that resolves to a {@code List} and a direct reference to a {@code JTable}.
     *
     * @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 targetJTable the target {@code JTable}
     * @return the {@code JTableBinding}
     * @throws IllegalArgumentException if {@code sourceListProperty} is {@code null}
     */
    public static <E, SS> JTableBinding<E, SS, JTable> createJTableBinding(AutoBinding.UpdateStrategy strategy, SS sourceObject, Property<SS, List<E>> sourceListProperty, JTable targetJTable) {
        return new JTableBinding<E, SS, JTable>(strategy, sourceObject, sourceListProperty, targetJTable, ObjectProperty.<JTable>create(), null);
    }
    
    /**
     * Creates a named {@code JTableBinding} from an object and property that resolves to a {@code List} and a direct reference to a {@code JTable}.
     *
     * @param strategy the update strategy
     * @param sourceObject the source object
     * @param sourceListProperty a property on the source object that resolves to a {@code List}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品传媒入口麻豆| 色狠狠色狠狠综合| 精品欧美久久久| 美女国产一区二区| 精品国产乱码久久久久久免费 | 欧美日韩不卡在线| 亚洲综合区在线| 欧美日产国产精品| 精品一区二区三区久久| 国产视频亚洲色图| 在线免费观看日韩欧美| 蜜桃精品视频在线| 欧美激情艳妇裸体舞| 一本色道综合亚洲| 蜜桃视频在线一区| 亚洲天堂精品视频| 制服丝袜中文字幕亚洲| 国产精品亚洲专一区二区三区| 国产精品久久久久婷婷二区次| 欧美天堂一区二区三区| 久久精品久久综合| 亚洲欧美一区二区三区极速播放 | 中文字幕不卡的av| 欧美日韩一区二区三区在线看| 久久国产成人午夜av影院| 国产精品免费丝袜| 欧美色视频一区| 国产福利一区在线| 日韩精品一级中文字幕精品视频免费观看 | 国产精品狼人久久影院观看方式| 在线免费观看成人短视频| 国产一区不卡在线| 亚洲一二三四区不卡| 国产性天天综合网| 欧美夫妻性生活| 色综合久久天天综合网| 久久99精品国产.久久久久| 综合久久综合久久| 久久精品视频一区二区| 欧美理论片在线| zzijzzij亚洲日本少妇熟睡| 理论电影国产精品| 亚洲成人久久影院| 国产精品超碰97尤物18| 精品av综合导航| 51精品久久久久久久蜜臀| 色婷婷av一区二区三区大白胸 | 99re亚洲国产精品| 国产九色sp调教91| 日韩精品国产欧美| 亚洲自拍偷拍欧美| 日韩理论片中文av| 中文字幕第一页久久| 精品国产一区二区精华| 91麻豆精品91久久久久同性| 色成年激情久久综合| 成人一区二区三区视频在线观看| 欧美a级一区二区| 日韩精品视频网| 首页欧美精品中文字幕| 一区二区三区日韩在线观看| 国产精品久久久久久久久动漫 | 日本三级亚洲精品| 午夜国产不卡在线观看视频| 亚洲女性喷水在线观看一区| 国产精品大尺度| 国产精品久久三区| 中文字幕一区二区三区四区| 中文字幕av一区二区三区免费看| 久久蜜桃一区二区| 久久精品视频在线看| 国产亚洲污的网站| 国产精品污www在线观看| 国产网站一区二区三区| 国产精品青草综合久久久久99| 久久精品在这里| 中文字幕欧美日本乱码一线二线| 国产精品美女一区二区三区| 国产精品蜜臀av| 一区二区免费在线播放| 亚洲愉拍自拍另类高清精品| 亚洲二区在线视频| 日韩精品成人一区二区三区| 捆绑调教美女网站视频一区| 国内精品在线播放| 国产精品亚洲成人| 成人免费看的视频| 一本色道久久综合狠狠躁的推荐 | 奇米在线7777在线精品| 国产在线国偷精品产拍免费yy | 国产1区2区3区精品美女| 成人午夜精品在线| 在线观看亚洲成人| 正在播放一区二区| 欧美大片在线观看| 国产欧美一区二区精品仙草咪| 国产精品久久久久久久午夜片 | 国产欧美一区二区三区沐欲| ...xxx性欧美| 亚洲高清不卡在线观看| 麻豆精品蜜桃视频网站| 大白屁股一区二区视频| 色综合 综合色| 日韩欧美一级二级三级| 国产精品欧美精品| 亚洲成a人在线观看| 精品一区二区免费在线观看| 高清不卡在线观看| 欧美吻胸吃奶大尺度电影| 欧美成人三级电影在线| 日韩理论电影院| 麻豆精品新av中文字幕| 99精品一区二区三区| 欧美巨大另类极品videosbest | 亚洲欧美国产77777| 日本免费新一区视频| 成人污污视频在线观看| 欧美肥妇free| 国产精品无人区| 麻豆91免费看| 色欧美乱欧美15图片| 欧美一二三区精品| 亚洲欧美日本在线| 狠狠色伊人亚洲综合成人| 日本精品视频一区二区| 久久免费偷拍视频| 天天操天天综合网| 99精品国产99久久久久久白柏| 8v天堂国产在线一区二区| 中文字幕一区二区三区精华液| 日韩电影在线观看一区| 色综合久久综合| 国产精品三级av| 久久精品国产亚洲高清剧情介绍| 色先锋久久av资源部| 国产日韩视频一区二区三区| 秋霞午夜鲁丝一区二区老狼| 色婷婷av一区二区| 国产欧美一区二区精品婷婷| 肉丝袜脚交视频一区二区| 91免费国产视频网站| 国产视频一区二区在线| 精品一二线国产| 欧美日韩国产另类一区| 亚洲区小说区图片区qvod| 国产精品1024| 欧美精品一区二区三区蜜桃视频| 天堂久久久久va久久久久| 99国产欧美另类久久久精品| 中文字幕国产一区| 国产麻豆精品视频| 26uuu亚洲婷婷狠狠天堂| 青青草伊人久久| 这里只有精品免费| 偷拍与自拍一区| 欧美无人高清视频在线观看| 亚洲乱码国产乱码精品精的特点 | 欧美在线观看一区二区| 亚洲视频免费看| 99久久综合国产精品| 中文字幕精品一区二区精品绿巨人| 国产精品一区二区无线| 欧美精品一区二区三| 激情综合色综合久久综合| 欧美一区二区三区四区视频| 日韩中文字幕麻豆| 欧美一卡2卡3卡4卡| 奇米精品一区二区三区在线观看一| 91精品一区二区三区久久久久久 | 欧美精品一区二区三区蜜臀| 精品制服美女丁香| 久久日韩粉嫩一区二区三区| 国内精品伊人久久久久影院对白| 久久蜜臀精品av| youjizz久久| 国产精品三级电影| 色狠狠综合天天综合综合| 亚洲综合自拍偷拍| 欧美人与性动xxxx| 精品在线播放免费| 久久久精品欧美丰满| 成人教育av在线| 亚洲裸体xxx| 欧美三级电影在线观看| 日韩福利电影在线| 7799精品视频| 国产99久久久国产精品免费看 | 风间由美一区二区av101| 国产精品乱码人人做人人爱| 91免费观看在线| 日韩高清不卡一区二区三区| 久久麻豆一区二区| 岛国一区二区三区| 亚洲第一av色| 久久免费视频色| 欧美亚洲高清一区二区三区不卡| 偷拍与自拍一区| 久久精品亚洲乱码伦伦中文| 91精品福利在线| 黄色资源网久久资源365|