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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? multitooltipui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號(hào):
/* * @(#)MultiToolTipUI.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.ToolTipUI;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>ToolTipUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.26 12/19/03 17:39:45 * @author  Otto Multey */public class MultiToolTipUI extends ToolTipUI {    /**     * 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);    }////////////////////// ToolTipUI 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 MultiToolTipUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiToolTipUI) 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;    }}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久一区| 亚洲三级在线免费观看| 99re这里都是精品| 日本不卡123| 亚洲精品一二三四区| wwwwxxxxx欧美| 91麻豆精品国产91久久久资源速度| 国产不卡一区视频| 蜜臀va亚洲va欧美va天堂 | 亚洲精品水蜜桃| 欧美电影免费提供在线观看| 欧美在线free| 日本韩国欧美一区二区三区| av资源站一区| 美女看a上一区| 日韩av中文字幕一区二区 | 亚洲一区二区在线免费看| 欧美国产日本视频| 26uuuu精品一区二区| 欧美一区二区精美| 欧美三级电影在线观看| 色偷偷一区二区三区| 高清免费成人av| 国产精品一区二区在线观看网站| 男人操女人的视频在线观看欧美| 视频在线在亚洲| 亚洲一区二区视频| 亚洲男同性视频| 亚洲精品乱码久久久久久| 亚洲欧洲99久久| 国产精品久线观看视频| 久久毛片高清国产| 久久免费视频色| 久久久国产精华| 国产偷v国产偷v亚洲高清 | 亚洲色图欧美在线| 国产精品高潮呻吟| 亚洲丝袜制服诱惑| 亚洲精品视频自拍| 一区二区三区四区国产精品| 国产精品免费视频观看| 中文字幕亚洲一区二区av在线| 国产精品美女久久久久aⅴ| 国产欧美日韩一区二区三区在线观看| 精品久久国产老人久久综合| 久久久99精品久久| 《视频一区视频二区| 亚洲欧洲色图综合| 亚洲乱码日产精品bd| 一区二区三区不卡视频| 亚洲综合一二区| 日韩主播视频在线| 精品无人区卡一卡二卡三乱码免费卡| 久久狠狠亚洲综合| 国产福利91精品一区| 色综合视频在线观看| 欧美色网站导航| 日韩免费一区二区| 欧美精彩视频一区二区三区| 亚洲女人****多毛耸耸8| 夜色激情一区二区| 舔着乳尖日韩一区| 久久电影网站中文字幕| 丁香一区二区三区| 日本高清不卡在线观看| 91精品国产麻豆| 久久综合一区二区| 亚洲免费观看高清| 青青草原综合久久大伊人精品优势| 麻豆精品久久久| 91在线视频免费观看| 欧美日韩不卡视频| 久久久久国产成人精品亚洲午夜 | 久久精品国产澳门| 成人黄动漫网站免费app| 欧美性生活久久| 欧美va天堂va视频va在线| 国产精品黄色在线观看| 肉丝袜脚交视频一区二区| 国产一区在线观看麻豆| 色狠狠综合天天综合综合| 欧美一区二区三区四区视频| 国产亚洲一区二区三区在线观看 | 日本视频在线一区| 成年人午夜久久久| 欧美电影免费观看高清完整版| 中文字幕一区二区三| 久久精品国产精品亚洲综合| 色悠久久久久综合欧美99| 欧美精品一区二区三区久久久| 一区二区日韩av| 国产精品一级在线| 91精品欧美福利在线观看| 国产精品初高中害羞小美女文| 青青草国产精品97视觉盛宴| 99久久精品99国产精品| 精品电影一区二区| 天天色综合天天| 一本一道久久a久久精品| 国产视频一区二区在线| 三级成人在线视频| 91欧美一区二区| 国产精品污www在线观看| 老司机精品视频一区二区三区| 欧洲精品一区二区| 中文字幕一区二区三区不卡在线| 国产综合久久久久久鬼色| 欧美精品1区2区| 亚洲一区二区三区视频在线| 99久久er热在这里只有精品15| 久久婷婷久久一区二区三区| 视频一区在线视频| 欧美在线观看一区二区| 国产精品久久久一本精品| 粉嫩欧美一区二区三区高清影视 | 一区二区中文视频| 国产成人免费在线视频| 精品国产伦理网| 日本成人中文字幕在线视频| 在线观看日韩电影| 亚洲人精品午夜| av一区二区久久| 国产三级欧美三级| 国内精品第一页| 欧美成人精品3d动漫h| 视频一区二区国产| 欧美三级视频在线| 亚洲国产精品久久人人爱蜜臀| 在线视频观看一区| 亚洲国产精品麻豆| 欧美日韩一二三区| 石原莉奈在线亚洲二区| 欧美日韩国产综合久久| 五月婷婷综合网| 欧美一区二区精美| 精品午夜一区二区三区在线观看| 欧美不卡123| 国产麻豆视频一区二区| 久久久精品中文字幕麻豆发布| 国产精品一级片| 中文久久乱码一区二区| 成人h动漫精品| 日韩毛片在线免费观看| 91蝌蚪porny九色| 一区二区三区日本| 在线成人免费视频| 久久成人av少妇免费| 久久综合色鬼综合色| 粉嫩aⅴ一区二区三区四区| 中文字幕永久在线不卡| 在线免费亚洲电影| 视频一区在线播放| xf在线a精品一区二区视频网站| 成人午夜激情影院| 一区二区三区中文字幕| 91精品国产综合久久香蕉的特点| 久久精品国产一区二区| 久久精品亚洲精品国产欧美kt∨ | 欧美日韩一区国产| 日本成人在线看| 国产日本欧美一区二区| 色94色欧美sute亚洲线路一久| 日韩av电影免费观看高清完整版| 日韩精品专区在线影院观看| 成人动漫一区二区在线| 亚洲高清一区二区三区| 久久久久久久电影| 一本久道久久综合中文字幕| 美女国产一区二区三区| 国产精品久久久久一区| 欧美麻豆精品久久久久久| 国产精品小仙女| 午夜精品视频在线观看| 久久久久9999亚洲精品| 欧美视频在线不卡| 国产精品香蕉一区二区三区| 一区二区三区在线观看网站| 精品少妇一区二区三区在线播放| 97久久精品人人爽人人爽蜜臀| 青娱乐精品在线视频| 中文字幕亚洲欧美在线不卡| 欧美一区二区三区视频在线观看| 成人高清伦理免费影院在线观看| 午夜婷婷国产麻豆精品| 欧美激情一区二区三区| 日韩一区二区高清| 91亚洲国产成人精品一区二区三| 喷水一区二区三区| 玉米视频成人免费看| 久久久久久久电影| 91精品国产福利在线观看| aaa欧美色吧激情视频| 免费看欧美美女黄的网站| 亚洲日本va在线观看| 久久麻豆一区二区| 欧美一区二区三区视频在线观看| 成人av网站在线观看| 狠狠色综合播放一区二区| 性做久久久久久久免费看| 亚洲欧洲日本在线|