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

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

?? multioptionpaneui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號:
/* * @(#)MultiOptionPaneUI.java	1.25 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.OptionPaneUI;import javax.swing.JOptionPane;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>OptionPaneUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.25 12/19/03 17:39:36 * @author  Otto Multey */public class MultiOptionPaneUI extends OptionPaneUI {    /**     * 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);    }////////////////////// OptionPaneUI methods////////////////////    /**     * Invokes the <code>selectInitialValue</code> method on each UI handled by this object.     */    public void selectInitialValue(JOptionPane a) {        for (int i = 0; i < uis.size(); i++) {            ((OptionPaneUI) (uis.elementAt(i))).selectInitialValue(a);        }    }    /**     * Invokes the <code>containsCustomComponents</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 containsCustomComponents(JOptionPane a) {        boolean returnValue =             ((OptionPaneUI) (uis.elementAt(0))).containsCustomComponents(a);        for (int i = 1; i < uis.size(); i++) {            ((OptionPaneUI) (uis.elementAt(i))).containsCustomComponents(a);        }        return returnValue;    }////////////////////// 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 MultiOptionPaneUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiOptionPaneUI) 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;    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美亚州韩日在线看免费版国语版 | 日本中文字幕一区二区有限公司| 亚洲免费资源在线播放| 亚洲你懂的在线视频| 日韩国产欧美在线视频| 国产精品一区二区三区乱码| 国产91丝袜在线18| 91成人免费网站| 亚洲精品在线观看网站| 国产精品国产成人国产三级| 亚洲午夜国产一区99re久久| 国内成+人亚洲+欧美+综合在线| 91亚洲永久精品| 日韩欧美视频在线| 麻豆91在线播放免费| 欧美高清在线视频| 亚洲一卡二卡三卡四卡无卡久久 | 日本道在线观看一区二区| 日韩欧美另类在线| 亚洲欧美欧美一区二区三区| 久久精品99久久久| 欧美视频中文一区二区三区在线观看 | 青青草97国产精品免费观看无弹窗版| 粉嫩蜜臀av国产精品网站| 5566中文字幕一区二区电影 | 奇米色777欧美一区二区| 日本韩国一区二区三区视频| 国产精品九色蝌蚪自拍| 久草在线在线精品观看| 欧美伦理影视网| 亚洲影院理伦片| 欧美亚洲综合网| 综合久久久久综合| 91网站在线播放| 国产精品高潮呻吟久久| 99久久夜色精品国产网站| 久久久91精品国产一区二区精品| 男女男精品网站| 精品日产卡一卡二卡麻豆| 蜜桃精品视频在线| 欧美xxx久久| 韩国精品免费视频| 天天影视涩香欲综合网| 色成人在线视频| 亚洲午夜久久久久久久久久久| 在线观看免费视频综合| 97久久超碰国产精品电影| 亚洲精品免费在线播放| 欧美性xxxxx极品少妇| 午夜电影一区二区三区| 91精品一区二区三区在线观看| 蜜臀av性久久久久蜜臀aⅴ四虎| 26uuu欧美日本| 成人午夜免费视频| 亚洲国产裸拍裸体视频在线观看乱了 | 亚洲综合在线第一页| 欧美人与禽zozo性伦| 国产一区二区福利视频| 亚洲欧美另类小说| 91精品国产麻豆国产自产在线| 国产激情一区二区三区| 天堂一区二区在线| 欧美三级视频在线| 激情五月婷婷综合| 欧美三级电影在线看| 久久99热这里只有精品| 国产精品亲子伦对白| 欧美亚洲日本一区| 久久成人免费网站| 亚洲欧洲成人精品av97| 国产欧美日韩亚州综合 | 91福利国产精品| 欧美在线短视频| 亚洲天堂中文字幕| 最新成人av在线| 久久女同精品一区二区| 精品国产1区2区3区| 日韩视频免费观看高清完整版| 国产高清亚洲一区| 日韩你懂的在线播放| 亚洲欧美乱综合| 欧美巨大另类极品videosbest| 天堂av在线一区| ww亚洲ww在线观看国产| 成人av在线电影| 日韩精品视频网| 国产精品亲子乱子伦xxxx裸| 91污在线观看| 麻豆免费看一区二区三区| 国产嫩草影院久久久久| 中文字幕久久午夜不卡| 日韩高清不卡一区二区| 中文字幕一区二区三区四区| 91国产免费观看| 欧美极品少妇xxxxⅹ高跟鞋| 欧美视频精品在线| 99re这里只有精品视频首页| 99久久er热在这里只有精品66| 日韩精品乱码av一区二区| 欧美日韩一卡二卡三卡| 免费观看久久久4p| 最新热久久免费视频| 亚洲另类在线制服丝袜| 亚洲精品国产精品乱码不99| 一区二区欧美视频| 亚洲国产精品一区二区久久| 偷拍日韩校园综合在线| 蜜桃免费网站一区二区三区| 国产精品一区二区你懂的| jlzzjlzz亚洲日本少妇| 欧美日韩高清不卡| 国产亚洲精品福利| 欧美成人精品福利| 久久久精品国产99久久精品芒果| 国产亚洲欧美在线| 亚洲色图一区二区| 又紧又大又爽精品一区二区| 国产精品毛片a∨一区二区三区| 日韩女优av电影| 国产精品国产三级国产三级人妇| 亚洲乱码日产精品bd| 日韩激情中文字幕| 成人一区二区三区中文字幕| 色婷婷亚洲综合| 精品欧美一区二区在线观看 | 亚洲第一综合色| 国产91丝袜在线播放九色| 欧美日韩高清一区| 国产精品久久久久一区二区三区共 | 99久久久久久| 精品国产伦一区二区三区观看体验 | 欧美α欧美αv大片| 中文字幕中文字幕中文字幕亚洲无线| 婷婷国产v国产偷v亚洲高清| 国产91精品在线观看| 91精品国产福利在线观看| 国产精品视频在线看| 亚洲成人精品在线观看| 成人一区二区三区视频在线观看| 色综合久久久久综合99| 久久一区二区视频| 亚洲一区二区三区视频在线播放 | 97超碰欧美中文字幕| 欧美成人r级一区二区三区| 一区二区三区四区高清精品免费观看| 国产一区二区三区在线观看精品 | 粉嫩一区二区三区在线看 | 成人性生交大片免费看视频在线| 成人精品免费看| 日韩精品一区二区三区中文不卡| 亚洲人一二三区| 97精品国产97久久久久久久久久久久 | 热久久国产精品| 精品视频资源站| 一区二区成人在线| 91视频91自| 亚洲综合色婷婷| 色94色欧美sute亚洲线路一久| 亚洲欧美另类小说视频| 色先锋资源久久综合| 一区二区三区日韩欧美精品| 在线观看日韩av先锋影音电影院| 亚洲精品欧美激情| 欧美日韩视频一区二区| 午夜欧美电影在线观看| 欧美日韩国产天堂| 图片区小说区区亚洲影院| 成人免费毛片高清视频| 亚洲女女做受ⅹxx高潮| 制服丝袜中文字幕亚洲| 亚洲综合一二三区| 日本伦理一区二区| 石原莉奈在线亚洲二区| 日韩午夜av电影| 国产成人av电影在线| 亚洲精品国产无天堂网2021| 欧美日韩五月天| 奇米精品一区二区三区四区| 久久精品男人天堂av| 欧美亚洲综合一区| 久久99国产乱子伦精品免费| 国产色一区二区| 欧美日韩精品三区| 国产白丝精品91爽爽久久 | 欧美一级视频精品观看| 国产成人av电影免费在线观看| 一个色妞综合视频在线观看| 精品理论电影在线观看| 国产凹凸在线观看一区二区| 性欧美疯狂xxxxbbbb| 久久精品视频网| 欧美一级片免费看| 99国产欧美另类久久久精品| 久久99精品久久久久久国产越南 | 亚洲欧美另类久久久精品| 26uuu欧美| 日韩欧美高清在线| 欧美日韩精品免费| 在线观看91精品国产入口| 成人激情文学综合网|