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

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

?? multirootpaneui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號:
/* * @(#)MultiRootPaneUI.java	1.5 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.RootPaneUI;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>RootPaneUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.5 12/19/03 17:39:38 * @author  Otto Multey */public class MultiRootPaneUI extends RootPaneUI {    /**     * 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);    }////////////////////// RootPaneUI 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 MultiRootPaneUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiRootPaneUI) 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免费观看视频| heyzo一本久久综合| 国产成人亚洲综合a∨婷婷| 九九九久久久精品| 国内成人精品2018免费看| 久久国产综合精品| 麻豆精品国产91久久久久久| 精品一区二区三区在线观看 | 欧美在线观看一区二区| 色综合久久久久综合99| 91久久精品午夜一区二区| 欧美日韩另类一区| 日韩一区二区在线播放| 久久毛片高清国产| 国产精品视频第一区| 亚洲免费观看高清完整版在线| 亚洲综合色丁香婷婷六月图片| 亚洲成人动漫一区| 国产真实乱偷精品视频免| 国产成人精品在线看| 色素色在线综合| 日韩女同互慰一区二区| 欧美激情在线免费观看| 亚洲精品国产a久久久久久| 亚洲成人手机在线| 国产高清在线观看免费不卡| 色婷婷激情一区二区三区| 日韩一区二区三区免费看| 久久色.com| 亚洲曰韩产成在线| 国产伦精品一区二区三区免费迷 | 欧美撒尿777hd撒尿| 日韩美女一区二区三区四区| 国产精品视频一二| 日韩一区精品视频| 国产成人自拍在线| 欧美伦理影视网| 国产精品少妇自拍| 免费精品视频在线| 91麻豆蜜桃一区二区三区| 欧美日韩一区二区三区在线看| 精品国产麻豆免费人成网站| 亚洲最快最全在线视频| 国产成人免费视频网站| 91麻豆精品国产自产在线观看一区| 日本一区二区电影| 免费看欧美美女黄的网站| 色综合久久综合| 国产午夜精品一区二区三区四区| 亚洲一二三区在线观看| 成人在线综合网站| 精品美女一区二区三区| 一个色在线综合| 成人免费高清视频在线观看| 91精品国产一区二区| 亚洲精品成人少妇| 床上的激情91.| 精品久久久久久久久久久久包黑料 | 久久亚洲一区二区三区四区| 五月婷婷综合激情| 91福利在线看| 亚洲精品免费播放| 91麻豆精品一区二区三区| 中文字幕第一页久久| 国产精品中文有码| 精品国产第一区二区三区观看体验 | 国产欧美精品一区二区色综合朱莉| 五月天久久比比资源色| 欧洲色大大久久| 亚洲电影欧美电影有声小说| 一本色道久久综合狠狠躁的推荐| 久久久久久电影| 国产成人午夜精品5599| 日本一区二区视频在线| 丁香五精品蜜臀久久久久99网站| 久久综合色之久久综合| 国产一区二区美女| 国产亚洲成年网址在线观看| 国产高清不卡一区| 久久久久久久久免费| 国产精品一区一区三区| 国产欧美日韩亚州综合 | 欧美色偷偷大香| 亚洲国产综合色| 91精品欧美一区二区三区综合在 | 欧美视频一区二区在线观看| 一区二区三区日韩在线观看| 欧美系列日韩一区| 日韩精品乱码免费| 久久久不卡网国产精品二区| 成人一区二区三区在线观看| 一区二区三区丝袜| 欧美日本一区二区三区| 黄网站免费久久| 国产欧美精品国产国产专区| 99视频一区二区| 亚洲不卡在线观看| 久久久精品免费网站| 91免费看`日韩一区二区| 日韩精品久久理论片| 国产日产欧美一区| 欧美三级乱人伦电影| 狠狠色狠狠色综合| 一区二区欧美国产| 精品成人一区二区三区四区| 99国产一区二区三精品乱码| 亚洲va在线va天堂| 国产清纯白嫩初高生在线观看91| 91免费国产在线观看| 精品一区二区三区免费| 亚洲视频一二区| 欧美va在线播放| 日本乱码高清不卡字幕| 国产麻豆精品在线| 亚洲第一福利一区| 国产精品美女久久久久久久久| 欧美日韩一区二区三区在线| 成人h动漫精品一区二区| 日本女人一区二区三区| 亚洲女爱视频在线| 久久九九久久九九| 欧美一区二区精美| 欧美在线色视频| 福利视频网站一区二区三区| 午夜国产精品一区| 亚洲日本青草视频在线怡红院| 精品少妇一区二区三区免费观看 | 亚洲美女视频在线观看| 久久九九国产精品| 日韩欧美国产一区二区三区| 91国模大尺度私拍在线视频| gogo大胆日本视频一区| 国产一区二区在线看| 日本强好片久久久久久aaa| 亚洲一区精品在线| 亚洲人成小说网站色在线 | 欧美日韩成人综合| 99国产精品久久| 成人爽a毛片一区二区免费| 激情久久久久久久久久久久久久久久| 亚洲丰满少妇videoshd| 亚洲男人的天堂网| 亚洲三级在线播放| 成人免费在线视频| 日韩美女视频19| 中文字幕欧美一| 成人免费在线播放视频| 亚洲欧美在线视频| 国产精品美女视频| 亚洲免费在线视频一区 二区| 中文字幕第一区第二区| 国产精品看片你懂得| 亚洲欧洲另类国产综合| 中文字幕一区在线观看| 日韩一区有码在线| 一区二区免费视频| 亚洲成av人片在线| 欧美aaaaaa午夜精品| 精品一区二区日韩| 国产精品69久久久久水密桃| 国产精品一级在线| 成人性生交大片免费看视频在线 | av成人老司机| 色爱区综合激月婷婷| 欧美日韩国产精选| 精品少妇一区二区三区免费观看| 久久久久国产精品人| 国产精品人人做人人爽人人添| 国产精品日日摸夜夜摸av| 亚洲品质自拍视频| 亚洲成人av电影在线| 麻豆国产91在线播放| 国产精品一区在线| 日本高清视频一区二区| 欧美一区二区三区四区在线观看 | 亚洲成人一二三| 久99久精品视频免费观看| 成人中文字幕合集| 在线中文字幕一区| 久久婷婷色综合| 一级中文字幕一区二区| 久久国产精品露脸对白| www.性欧美| 日韩女优视频免费观看| 国产精品久久久一本精品| 午夜成人在线视频| 成人丝袜视频网| 欧美一区二区黄| 亚洲人成7777| 国产一区二区视频在线播放| 97久久精品人人爽人人爽蜜臀| 91精品国产一区二区三区| 亚洲欧美综合在线精品| 国产一区二区三区不卡在线观看 | 偷拍亚洲欧洲综合| 成人av第一页| 日韩亚洲欧美在线|