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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? multisliderui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號:
/* * @(#)MultiSliderUI.java	1.26 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.swing.plaf.multi;import java.util.Vector;import javax.swing.plaf.SliderUI;import javax.swing.plaf.ComponentUI;import javax.swing.JComponent;import java.awt.Graphics;import java.awt.Dimension;import javax.accessibility.Accessible;/** * A multiplexing UI used to combine <code>SliderUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.26 12/19/03 17:39:40 * @author  Otto Multey */public class MultiSliderUI extends SliderUI {    /**     * The vector containing the real UIs.  This is populated      * in the call to <code>createUI</code>, and can be obtained by calling     * the <code>getUIs</code> method.  The first element is guaranteed to be the real UI      * obtained from the default look and feel.     */    protected Vector uis = new Vector();////////////////////// Common UI methods////////////////////    /**     * Returns the list of UIs associated with this multiplexing UI.  This      * allows processing of the UIs by an application aware of multiplexing      * UIs on components.     */    public ComponentUI[] getUIs() {        return MultiLookAndFeel.uisToArray(uis);    }////////////////////// SliderUI methods////////////////////////////////////////// ComponentUI methods////////////////////    /**     * Invokes the <code>contains</code> method on each UI handled by this object.     *      * @return the value obtained from the first UI, which is     * the UI obtained from the default <code>LookAndFeel</code>     */    public boolean contains(JComponent a, int b, int c) {        boolean returnValue =             ((ComponentUI) (uis.elementAt(0))).contains(a,b,c);        for (int i = 1; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).contains(a,b,c);        }        return returnValue;    }    /**     * Invokes the <code>update</code> method on each UI handled by this object.     */    public void update(Graphics a, JComponent b) {        for (int i = 0; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).update(a,b);        }    }    /**     * Returns a multiplexing UI instance if any of the auxiliary     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the      * UI object obtained from the default <code>LookAndFeel</code>.     */    public static ComponentUI createUI(JComponent a) {        ComponentUI mui = new MultiSliderUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiSliderUI) mui).uis,                                          a);    }    /**     * Invokes the <code>installUI</code> method on each UI handled by this object.     */    public void installUI(JComponent a) {        for (int i = 0; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).installUI(a);        }    }    /**     * Invokes the <code>uninstallUI</code> method on each UI handled by this object.     */    public void uninstallUI(JComponent a) {        for (int i = 0; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).uninstallUI(a);        }    }    /**     * Invokes the <code>paint</code> method on each UI handled by this object.     */    public void paint(Graphics a, JComponent b) {        for (int i = 0; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).paint(a,b);        }    }    /**     * Invokes the <code>getPreferredSize</code> method on each UI handled by this object.     *      * @return the value obtained from the first UI, which is     * the UI obtained from the default <code>LookAndFeel</code>     */    public Dimension getPreferredSize(JComponent a) {        Dimension returnValue =             ((ComponentUI) (uis.elementAt(0))).getPreferredSize(a);        for (int i = 1; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).getPreferredSize(a);        }        return returnValue;    }    /**     * Invokes the <code>getMinimumSize</code> method on each UI handled by this object.     *      * @return the value obtained from the first UI, which is     * the UI obtained from the default <code>LookAndFeel</code>     */    public Dimension getMinimumSize(JComponent a) {        Dimension returnValue =             ((ComponentUI) (uis.elementAt(0))).getMinimumSize(a);        for (int i = 1; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).getMinimumSize(a);        }        return returnValue;    }    /**     * Invokes the <code>getMaximumSize</code> method on each UI handled by this object.     *      * @return the value obtained from the first UI, which is     * the UI obtained from the default <code>LookAndFeel</code>     */    public Dimension getMaximumSize(JComponent a) {        Dimension returnValue =             ((ComponentUI) (uis.elementAt(0))).getMaximumSize(a);        for (int i = 1; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).getMaximumSize(a);        }        return returnValue;    }    /**     * Invokes the <code>getAccessibleChildrenCount</code> method on each UI handled by this object.     *      * @return the value obtained from the first UI, which is     * the UI obtained from the default <code>LookAndFeel</code>     */    public int getAccessibleChildrenCount(JComponent a) {        int returnValue =             ((ComponentUI) (uis.elementAt(0))).getAccessibleChildrenCount(a);        for (int i = 1; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).getAccessibleChildrenCount(a);        }        return returnValue;    }    /**     * Invokes the <code>getAccessibleChild</code> method on each UI handled by this object.     *      * @return the value obtained from the first UI, which is     * the UI obtained from the default <code>LookAndFeel</code>     */    public Accessible getAccessibleChild(JComponent a, int b) {        Accessible returnValue =             ((ComponentUI) (uis.elementAt(0))).getAccessibleChild(a,b);        for (int i = 1; i < uis.size(); i++) {            ((ComponentUI) (uis.elementAt(i))).getAccessibleChild(a,b);        }        return returnValue;    }}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国内精品视频666| 91网页版在线| 国产成人在线视频播放| 成人av免费在线播放| 99精品视频在线播放观看| 91理论电影在线观看| 在线免费观看视频一区| 欧美一区二区三区不卡| 国产亚洲美州欧州综合国 | 国产不卡高清在线观看视频| 国产一区二区女| 懂色av中文一区二区三区| 成+人+亚洲+综合天堂| 欧美图片一区二区三区| 这里只有精品99re| 久久精品视频网| 中文字幕一区二区三区色视频 | 欧美人xxxx| 欧美国产在线观看| 午夜电影一区二区三区| 成人黄色一级视频| 精品国产乱码久久| 亚洲麻豆国产自偷在线| 国产精品88av| 91精品福利在线一区二区三区 | 欧美精品自拍偷拍| 一区二区三区在线高清| 一区二区三区影院| 粉嫩嫩av羞羞动漫久久久| 欧美日韩精品专区| 中文字幕va一区二区三区| 日韩激情视频网站| 色综合天天在线| 欧美一级二级在线观看| 精品成a人在线观看| 麻豆成人免费电影| 欧美一级高清片| 一区二区三区精品在线观看| 成人涩涩免费视频| 久久免费视频一区| 日韩高清不卡一区| 欧美精品一卡两卡| 午夜在线电影亚洲一区| 在线观看欧美日本| 亚洲自拍偷拍图区| 91黄色免费版| 亚洲va韩国va欧美va| 欧美片在线播放| 狠狠色狠狠色综合| 欧美伊人久久大香线蕉综合69| 精品国产三级a在线观看| 国产农村妇女精品| 在线免费不卡电影| 东方欧美亚洲色图在线| 日本欧美一区二区| 亚洲欧美激情插| 日韩色视频在线观看| 韩国毛片一区二区三区| 国产精品毛片a∨一区二区三区| 成人福利视频在线| 1024国产精品| 日韩精品一区二区三区中文不卡| 天使萌一区二区三区免费观看| 欧美日韩中字一区| 国产一区不卡精品| 亚洲色图视频网| 这里只有精品免费| 国产成人久久精品77777最新版本| 国产精品免费视频网站| 欧美日韩mp4| 97久久精品人人做人人爽| 日韩电影免费在线看| 国产日韩av一区二区| 在线免费精品视频| 99久久精品情趣| 波多野结衣中文字幕一区 | 欧美福利视频导航| av男人天堂一区| 国产精品 日产精品 欧美精品| 日韩综合在线视频| 午夜久久久久久久久| 亚洲精品亚洲人成人网| 国产精品污www在线观看| 日韩一级免费观看| 欧美电视剧在线看免费| 56国语精品自产拍在线观看| 欧美精品三级在线观看| 日本精品视频一区二区| 91视频.com| 欧美视频在线播放| 精品sm在线观看| 欧美日韩高清影院| 欧美另类videos死尸| 91精品国产综合久久精品app| 欧美三级电影一区| 日韩欧美一二区| 久久久久国色av免费看影院| 欧美极品少妇xxxxⅹ高跟鞋 | 国产欧美一区在线| 成人欧美一区二区三区1314| 亚洲日本电影在线| 亚洲国产色一区| 国产精品白丝av| 欧美人伦禁忌dvd放荡欲情| 2014亚洲片线观看视频免费| 中文字幕巨乱亚洲| 免费高清在线一区| 色综合网色综合| 2020国产精品自拍| 天堂av在线一区| 色综合一个色综合| 国产精品国产馆在线真实露脸| 亚洲18女电影在线观看| 丝袜亚洲另类丝袜在线| 国产精品99精品久久免费| 在线视频中文字幕一区二区| 日韩免费观看2025年上映的电影| 久久嫩草精品久久久精品| 国产精品色呦呦| 久久草av在线| 欧美色偷偷大香| 中文字幕国产一区| 日韩精品久久理论片| av在线播放一区二区三区| 欧美不卡激情三级在线观看| 中文字幕字幕中文在线中不卡视频| 亚洲国产成人porn| 成人午夜激情影院| 日韩欧美在线不卡| 亚洲成人三级小说| 日本电影亚洲天堂一区| 国产精品三级在线观看| 国内精品写真在线观看| 欧美精品国产精品| 五月婷婷另类国产| 欧美日韩成人一区| 一区二区三国产精华液| 97精品电影院| 国产精品入口麻豆九色| 国产精品一区二区x88av| 精品久久久久久无| 日本va欧美va精品发布| 欧美精品粉嫩高潮一区二区| 亚洲香蕉伊在人在线观| 日本乱码高清不卡字幕| 一区二区三区日韩欧美精品 | 亚洲一区二区三区四区不卡| 色婷婷综合久久久久中文一区二区| 国产精品传媒视频| 91亚洲资源网| 亚洲自拍偷拍欧美| 宅男噜噜噜66一区二区66| 久久www免费人成看片高清| 久久久五月婷婷| 成人h动漫精品| 亚洲国产一区视频| 欧美一区二区三区视频在线观看| 日韩激情视频网站| 久久看人人爽人人| www.亚洲色图| 一区二区三区成人在线视频| 91精品国产一区二区三区| 精品一区二区三区在线观看国产| 欧美国产国产综合| 欧美亚洲精品一区| 极品美女销魂一区二区三区 | 在线观看www91| 九一久久久久久| 亚洲精品国产一区二区三区四区在线| 欧美精品视频www在线观看| 国产精品自拍av| 舔着乳尖日韩一区| 国产精品午夜电影| 日韩一区二区三区免费观看| 成人三级伦理片| 日本美女视频一区二区| 国产精品美女www爽爽爽| 日韩视频免费观看高清完整版在线观看 | 欧美一区二区三区在线视频 | 国产精品妹子av| 91精品国产综合久久香蕉的特点| av在线一区二区| 国产精品18久久久久| 图片区小说区区亚洲影院| 中文字幕第一区综合| 日韩一区二区免费在线电影| 色诱视频网站一区| eeuss鲁片一区二区三区在线看| 美女在线一区二区| 婷婷丁香激情综合| 亚洲美女电影在线| 欧美激情一区二区三区不卡 | 精品一区二区免费| 亚洲一区二区三区激情| 国产精品美女一区二区三区| 26uuu久久综合| 亚洲精品一区二区三区四区高清| 777久久久精品| 欧美老肥妇做.爰bbww| 欧美视频一区在线观看|