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

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

?? multipopupmenuui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號:
/* * @(#)MultiPopupMenuUI.java	1.28 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.PopupMenuUI;import java.awt.event.MouseEvent;import javax.swing.Popup;import javax.swing.JPopupMenu;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>PopupMenuUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.28 12/19/03 17:39:37 * @author  Otto Multey */public class MultiPopupMenuUI extends PopupMenuUI {    /**     * 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);    }////////////////////// PopupMenuUI methods////////////////////    /**     * Invokes the <code>isPopupTrigger</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 isPopupTrigger(MouseEvent a) {        boolean returnValue =             ((PopupMenuUI) (uis.elementAt(0))).isPopupTrigger(a);        for (int i = 1; i < uis.size(); i++) {            ((PopupMenuUI) (uis.elementAt(i))).isPopupTrigger(a);        }        return returnValue;    }    /**     * Invokes the <code>getPopup</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 Popup getPopup(JPopupMenu a, int b, int c) {        Popup returnValue =             ((PopupMenuUI) (uis.elementAt(0))).getPopup(a,b,c);        for (int i = 1; i < uis.size(); i++) {            ((PopupMenuUI) (uis.elementAt(i))).getPopup(a,b,c);        }        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 MultiPopupMenuUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiPopupMenuUI) 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一区二区三区免费野_久草精品视频
精品一区二区av| 99久免费精品视频在线观看| 国产91清纯白嫩初高中在线观看| 色久优优欧美色久优优| 久久久综合激的五月天| 亚洲第一二三四区| 91视视频在线直接观看在线看网页在线看| 777奇米四色成人影色区| 国产精品久线在线观看| 国产精品一区在线| 午夜精品久久久久久久久久久| 亚洲精品中文在线影院| 国产成人午夜电影网| 美女一区二区视频| 久久一日本道色综合| 精品国产乱码91久久久久久网站| 一区二区三区免费看视频| 大桥未久av一区二区三区中文| 欧美一区二区三区视频免费播放 | 欧美中文字幕一区二区三区亚洲| 久久久蜜臀国产一区二区| 青青草97国产精品免费观看 | 久久久久99精品国产片| 秋霞成人午夜伦在线观看| 婷婷亚洲久悠悠色悠在线播放| 亚洲黄色录像片| 亚洲欧洲精品成人久久奇米网| 欧美唯美清纯偷拍| 久久久99精品久久| 日本不卡视频在线| 欧美日韩午夜在线| 久久久99免费| 国产精品88av| 日韩精品一区二区三区在线观看 | 日韩高清中文字幕一区| 欧美性猛交xxxxxxxx| 亚洲无人区一区| 91美女片黄在线观看| 亚洲色图视频免费播放| 国产福利一区在线| 欧美视频在线观看一区二区| 国产精品伦一区二区三级视频| 麻豆国产精品视频| 国产三级精品三级| 9久草视频在线视频精品| 国产精品久久久久久亚洲毛片| 韩国av一区二区三区在线观看| 国产亚洲精品免费| 国产一区二区三区电影在线观看| 欧美国产一区二区在线观看| 国产乱人伦偷精品视频免下载| 欧美成人伊人久久综合网| 亚洲自拍与偷拍| 欧美日韩免费一区二区三区| 久久精品久久久精品美女| 日韩美一区二区三区| 国产不卡在线播放| 国产精品色哟哟网站| 欧美三日本三级三级在线播放| 亚洲最新视频在线观看| 欧美一区二区三区精品| 精品一区二区三区免费| 亚洲丝袜制服诱惑| 欧美在线免费观看视频| 亚洲图片欧美色图| 欧美顶级少妇做爰| 日韩和欧美一区二区三区| 久久久一区二区| 91在线云播放| 韩国v欧美v日本v亚洲v| 日本一区二区三区四区| 欧美日韩午夜在线视频| 精品在线一区二区三区| 亚洲自拍偷拍综合| 精品久久久影院| 欧美伊人精品成人久久综合97| 亚洲午夜精品17c| 中文无字幕一区二区三区| 91免费看视频| 国产一区二区在线观看免费| 中文字幕在线播放不卡一区| 97超碰欧美中文字幕| 狠狠色丁香婷综合久久| 欧美国产一区二区在线观看| 欧美一区二区女人| 波多野结衣在线一区| 婷婷综合久久一区二区三区| 久久五月婷婷丁香社区| 884aa四虎影成人精品一区| 国产精品一级在线| 麻豆一区二区99久久久久| 国产精品欧美经典| 欧美日韩国产综合视频在线观看| 国产风韵犹存在线视精品| 亚洲精品视频自拍| 亚洲欧美综合在线精品| 91精品国产黑色紧身裤美女| 成人中文字幕在线| 午夜视黄欧洲亚洲| 亚洲国产精品精华液ab| 精品视频色一区| 国产精品资源在线观看| 日韩激情视频在线观看| 午夜亚洲福利老司机| 中文欧美字幕免费| 3atv一区二区三区| 91久久奴性调教| 国产精品一区三区| 美女mm1313爽爽久久久蜜臀| 国产精品美女久久久久久久久 | 91精品欧美综合在线观看最新| 日本午夜精品视频在线观看| 亚洲视频在线观看三级| 一区在线中文字幕| 国产欧美精品一区二区三区四区| 91精品黄色片免费大全| 日本韩国精品在线| 国产一区久久久| 国产黑丝在线一区二区三区| 日日夜夜免费精品| 久久国产婷婷国产香蕉| 天堂久久一区二区三区| 麻豆传媒一区二区三区| 午夜精品久久久久久久99水蜜桃| 日本伊人午夜精品| 亚洲成人综合在线| 日韩国产一二三区| 亚洲国产综合在线| 日本不卡的三区四区五区| 香蕉成人啪国产精品视频综合网 | 麻豆成人免费电影| 男女性色大片免费观看一区二区 | 欧美精品日韩精品| 欧美一区二区三区系列电影| 欧美精品v日韩精品v韩国精品v| 6080yy午夜一二三区久久| 欧美日韩在线不卡| 精品久久国产97色综合| 欧美r级在线观看| 国产精品久久久久9999吃药| 中文字幕不卡的av| 亚洲大片精品永久免费| 日韩影院免费视频| 国产91精品在线观看| 成人黄动漫网站免费app| 色哟哟一区二区在线观看| 色综合色综合色综合| 欧美mv日韩mv| 欧美激情一区三区| 亚洲成人av电影| 美女尤物国产一区| 91蜜桃在线免费视频| 在线观看日韩一区| 久久毛片高清国产| 中文字幕一区视频| 久久97超碰色| 成人h动漫精品一区二区| 欧美军同video69gay| 精品久久免费看| 亚洲一区二区三区四区在线| 亚洲午夜影视影院在线观看| 国产乱码一区二区三区| 91影院在线免费观看| 欧美精品一区二区三区四区 | 日韩va欧美va亚洲va久久| 午夜精品福利在线| 99久久夜色精品国产网站| 色综合天天综合给合国产| 91精品国产福利在线观看| 久久久99久久| 天天综合天天做天天综合| 日韩福利电影在线| aaa欧美日韩| 日韩限制级电影在线观看| 亚洲乱码国产乱码精品精98午夜| 丝袜脚交一区二区| 欧美私人免费视频| 日韩视频在线你懂得| 亚洲成人精品一区二区| av在线不卡观看免费观看| 日韩视频免费观看高清完整版 | 国产在线精品不卡| 欧美日韩精品综合在线| 亚洲欧美韩国综合色| 国产中文字幕精品| 欧美草草影院在线视频| 亚洲色图一区二区| 丁香五精品蜜臀久久久久99网站 | 国产欧美一区二区精品仙草咪| 亚洲国产欧美一区二区三区丁香婷| 成人福利视频在线看| 911精品产国品一二三产区| 亚洲老司机在线| 国产精品一区三区| 国产婷婷色一区二区三区| 免费精品视频在线| 精品国产露脸精彩对白| 午夜视频久久久久久| 欧美精品色一区二区三区| 一区二区欧美国产|