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

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

?? multiviewportui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號:
/* * @(#)MultiViewportUI.java	1.11 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.ViewportUI;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>ViewportUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.11 12/19/03 17:39:47 * @author  Otto Multey */public class MultiViewportUI extends ViewportUI {    /**     * 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);    }////////////////////// ViewportUI 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 MultiViewportUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiViewportUI) 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一区二区三区免费野_久草精品视频
日韩精品一卡二卡三卡四卡无卡| 欧美日韩久久一区二区| 免费看精品久久片| 国产一区啦啦啦在线观看| 久久人人97超碰com| 成人午夜av影视| 亚洲综合精品久久| 精品国产凹凸成av人网站| 99在线精品免费| 午夜精品久久久久久久99水蜜桃| 日韩精品一区二区三区老鸭窝| 国产成a人亚洲精品| 一区二区高清在线| 久久精品视频免费| 欧美性xxxxxx少妇| 国产精品 欧美精品| 午夜视频一区在线观看| 国产人伦精品一区二区| 在线播放中文一区| 成人污视频在线观看| 麻豆精品视频在线观看| 亚洲乱码一区二区三区在线观看| 日韩欧美视频一区| 久久久久99精品一区| 欧美日韩一级二级| 国产91富婆露脸刺激对白| 亚洲电影第三页| 亚洲天堂成人网| 精品美女一区二区| 欧美精品aⅴ在线视频| 91丨九色丨蝌蚪富婆spa| 国产精品一二三四| 蜜桃久久久久久久| 天天综合网 天天综合色| 综合中文字幕亚洲| 国产精品久久二区二区| 久久久www成人免费毛片麻豆 | 在线观看www91| www.日韩av| 成人精品在线视频观看| 粉嫩aⅴ一区二区三区四区五区| 黄网站免费久久| 国产精品系列在线观看| 国产电影一区在线| 成人午夜av在线| 国产成人av影院| 国产一区三区三区| 懂色中文一区二区在线播放| 成人av网址在线| 成人av手机在线观看| 色综合久久中文综合久久97| youjizz久久| 91国模大尺度私拍在线视频| 日韩免费电影一区| 国产亚洲精品超碰| 狠狠色丁香久久婷婷综合丁香| 成人午夜视频在线观看| 欧美哺乳videos| 欧美一区二区三区四区高清| 欧美一区二区三区四区视频| 欧美日韩国产一级二级| 欧美天堂一区二区三区| 99久久久免费精品国产一区二区| 国产乱国产乱300精品| 日日摸夜夜添夜夜添亚洲女人| 日本不卡中文字幕| 国产精品18久久久久| 91精品综合久久久久久| 亚洲一区二区三区四区五区黄 | 亚洲精品免费一二三区| 国产麻豆视频一区二区| 欧美一区二区在线免费观看| 亚洲免费av网站| 99综合影院在线| 国产精品色噜噜| 一区二区三区日韩精品视频| 久久精品综合网| 中文字幕一区二区三区四区| 亚洲成人av一区二区| 成人午夜在线播放| 欧美日本一区二区三区四区| 国产清纯白嫩初高生在线观看91| 亚洲国产中文字幕在线视频综合 | 麻豆精品在线播放| 色94色欧美sute亚洲线路一ni| 日韩欧美在线网站| 亚洲成人免费看| av在线不卡观看免费观看| 国产日韩欧美综合在线| 日韩国产精品久久久| 欧美曰成人黄网| 国产精品剧情在线亚洲| 久久电影网电视剧免费观看| 欧美系列日韩一区| 亚洲欧美二区三区| 成人精品gif动图一区| 欧美成人精品1314www| 午夜欧美在线一二页| 在线视频欧美区| 精品国产一区二区三区av性色| 视频一区二区三区入口| 在线播放亚洲一区| 26uuu精品一区二区| 另类小说视频一区二区| 制服丝袜激情欧洲亚洲| 午夜精品久久久久久久久久 | 亚洲欧美日本在线| 99精品视频在线观看免费| 国产欧美1区2区3区| 91视频xxxx| 日韩中文字幕区一区有砖一区 | 国产欧美一二三区| 日本久久一区二区| 性欧美疯狂xxxxbbbb| 中文字幕一区二区三| 欧美色精品天天在线观看视频| 黄页网站大全一区二区| 亚洲欧洲av在线| 日韩免费电影网站| 99天天综合性| 奇米在线7777在线精品| 亚洲国产高清aⅴ视频| 欧美日韩免费一区二区三区| 国产制服丝袜一区| 一区二区视频在线| 久久丝袜美腿综合| 在线欧美日韩精品| 国产精品一线二线三线精华| 亚洲黄色免费电影| 国产91丝袜在线18| 男男成人高潮片免费网站| 亚洲天堂久久久久久久| 国产亚洲精品bt天堂精选| 在线不卡免费欧美| 欧美日韩综合不卡| 91在线视频网址| 国产91清纯白嫩初高中在线观看| 日韩 欧美一区二区三区| 亚洲男同1069视频| 久久久高清一区二区三区| 欧美福利视频导航| 在线亚洲高清视频| 成人免费视频caoporn| 经典一区二区三区| 热久久国产精品| 日韩精品亚洲专区| 亚洲国产视频直播| 亚洲3atv精品一区二区三区| 亚洲三级电影网站| 亚洲免费av高清| 亚洲靠逼com| 亚洲一区国产视频| 亚洲国产美国国产综合一区二区| 日韩美女久久久| 亚洲人成7777| 一区二区三区在线视频播放| 亚洲男人天堂一区| 亚洲mv在线观看| 日韩 欧美一区二区三区| 美女一区二区在线观看| 紧缚奴在线一区二区三区| 国产99久久久久| 亚洲永久精品大片| 亚洲国产成人av网| 九九九久久久精品| 国产.欧美.日韩| 91丨九色丨黑人外教| 91麻豆精品国产91| 国产精品素人视频| 亚洲第四色夜色| 国产精品综合在线视频| 日本网站在线观看一区二区三区| 欧美军同video69gay| 亚洲chinese男男1069| 国产精品成人午夜| 国产精品卡一卡二| 亚洲永久免费av| 久久99精品网久久| 在线日韩av片| 国产精品免费视频一区| 图片区小说区国产精品视频| www.99精品| 欧美精品一区二区久久久| 国产精品国产三级国产aⅴ中文| 欧美私人免费视频| 欧美色精品天天在线观看视频| 日韩欧美一二三区| 国产亚洲福利社区一区| 久久久噜噜噜久久中文字幕色伊伊 | 亚洲综合小说图片| 国产精选一区二区三区| 欧美三级日韩三级| 国产精品国产三级国产普通话99 | ...av二区三区久久精品| 国产激情视频一区二区三区欧美| 久久国产夜色精品鲁鲁99| 在线影院国内精品| 国产精品第13页| 国产伦精品一区二区三区视频青涩| 在线观看国产91|