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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? multilistui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號(hào):
/* * @(#)MultiListUI.java	1.27 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.ListUI;import javax.swing.JList;import java.awt.Point;import java.awt.Rectangle;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>ListUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.27 12/19/03 17:39:33 * @author  Otto Multey */public class MultiListUI extends ListUI {    /**     * 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);    }////////////////////// ListUI methods////////////////////    /**     * Invokes the <code>locationToIndex</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 locationToIndex(JList a, Point b) {        int returnValue =             ((ListUI) (uis.elementAt(0))).locationToIndex(a,b);        for (int i = 1; i < uis.size(); i++) {            ((ListUI) (uis.elementAt(i))).locationToIndex(a,b);        }        return returnValue;    }    /**     * Invokes the <code>indexToLocation</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 Point indexToLocation(JList a, int b) {        Point returnValue =             ((ListUI) (uis.elementAt(0))).indexToLocation(a,b);        for (int i = 1; i < uis.size(); i++) {            ((ListUI) (uis.elementAt(i))).indexToLocation(a,b);        }        return returnValue;    }    /**     * Invokes the <code>getCellBounds</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 Rectangle getCellBounds(JList a, int b, int c) {        Rectangle returnValue =             ((ListUI) (uis.elementAt(0))).getCellBounds(a,b,c);        for (int i = 1; i < uis.size(); i++) {            ((ListUI) (uis.elementAt(i))).getCellBounds(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 MultiListUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiListUI) 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;    }}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久er精品视频| 美女网站一区二区| 成人av综合在线| 久久美女艺术照精彩视频福利播放| 亚洲444eee在线观看| 精品一区二区三区在线视频| 欧美日韩国产欧美日美国产精品| 国产精品久久久一本精品| 激情文学综合网| 欧美大黄免费观看| 天堂在线一区二区| 欧美伊人久久大香线蕉综合69| 中文字幕亚洲区| 成人午夜激情在线| 国产色产综合色产在线视频| 日韩中文字幕不卡| 欧美日韩黄色影视| 午夜视频一区二区| 欧美手机在线视频| 亚洲国产欧美在线人成| 欧洲一区二区三区免费视频| 亚洲色图视频网| 色综合久久综合网欧美综合网 | 国产综合色产在线精品| 欧美一卡在线观看| 亚洲一区二区三区四区的| 一本大道久久a久久精品综合| 国产精品高潮呻吟久久| 成人91在线观看| 综合激情成人伊人| 成人激情免费网站| 中文字幕一区av| 色婷婷久久久综合中文字幕| 亚洲精品久久7777| 色天使色偷偷av一区二区| 怡红院av一区二区三区| 91久久精品网| 亚洲超碰精品一区二区| 91精品啪在线观看国产60岁| 日日夜夜精品视频天天综合网| 欧美日韩一区国产| 婷婷开心激情综合| 91精品国产综合久久婷婷香蕉| 天天色综合天天| 欧美日韩不卡一区二区| 蜜桃视频一区二区三区在线观看| 日韩一级黄色片| 国产一区二区在线看| 国产欧美一区二区在线观看| 成人av第一页| 亚洲午夜一区二区| 欧美一区二区三区在线| 狠狠色综合日日| 亚洲国产成人私人影院tom| av在线综合网| 亚洲福利视频一区二区| 欧美一级生活片| 国产成人精品午夜视频免费| 国产精品久久综合| 欧美日韩一区二区三区免费看| 日韩不卡在线观看日韩不卡视频| 欧美成人欧美edvon| 成人性生交大片免费看视频在线| 国产精品麻豆99久久久久久| 色综合久久久久网| 秋霞国产午夜精品免费视频| 久久精品视频一区二区| 色综合久久88色综合天天免费| 婷婷中文字幕一区三区| 久久理论电影网| 91免费版在线| 蜜臀国产一区二区三区在线播放| 久久久精品人体av艺术| 色综合天天视频在线观看| 免费在线观看日韩欧美| 日本一区二区不卡视频| 欧美色老头old∨ideo| 日本在线不卡一区| 国产日韩欧美电影| 欧美午夜宅男影院| 国产一区二区美女诱惑| 亚洲精品成人悠悠色影视| 日韩免费高清电影| 成人免费看黄yyy456| 亚洲国产精品人人做人人爽| 久久综合九色欧美综合狠狠 | 成人综合婷婷国产精品久久 | 欧美在线一二三| 久久精工是国产品牌吗| 亚洲日本va在线观看| 欧美日韩情趣电影| 国产成人精品一区二区三区四区 | 亚洲色欲色欲www| 精品少妇一区二区| 欧美在线色视频| 大尺度一区二区| 日本最新不卡在线| 亚洲黄色小视频| 欧美成人三级在线| 欧美日韩国产大片| 99天天综合性| 国产99久久久久久免费看农村| 免费视频一区二区| 丝瓜av网站精品一区二区| 亚洲精品乱码久久久久久黑人| 国产精品入口麻豆九色| 久久综合久久鬼色中文字| 欧美一区二区三区男人的天堂| 在线国产亚洲欧美| 91亚洲精品久久久蜜桃| 成人精品高清在线| 成人av网站在线观看| 国产成人av电影在线| 九一九一国产精品| 美女一区二区在线观看| 日韩精品色哟哟| 天堂av在线一区| 五月婷婷久久综合| 午夜精品视频一区| 亚洲成人动漫在线免费观看| 一区二区三区在线不卡| 亚洲欧美日韩中文播放| 日韩一区有码在线| 中文字幕一区二区三区色视频| 国产精品久久久久影院亚瑟| 国产视频在线观看一区二区三区| 欧美精品一区视频| 精品久久久网站| 欧美精品一区二区在线观看| 欧美成人bangbros| 精品国产露脸精彩对白| 欧美成人性福生活免费看| 欧美成人vps| 久久亚洲精精品中文字幕早川悠里| 精品播放一区二区| 久久综合九色综合97婷婷| 久久久欧美精品sm网站| 久久久精品人体av艺术| 国产性色一区二区| 欧美经典一区二区| 中文在线免费一区三区高中清不卡 | av动漫一区二区| 色综合 综合色| 欧美怡红院视频| 6080日韩午夜伦伦午夜伦| 日韩欧美国产一区二区在线播放| 日韩欧美一区二区三区在线| 欧美成人性战久久| 中国色在线观看另类| 国产精品第13页| 亚洲一区视频在线| 人人精品人人爱| 国产精品一级在线| 99久久精品国产观看| 欧美在线观看18| 91精品国产综合久久久蜜臀粉嫩| 精品国产91九色蝌蚪| 久久精品视频一区二区三区| 中文字幕中文在线不卡住| 亚洲另类一区二区| 日本一区中文字幕| 国产专区欧美精品| 91在线免费看| 欧美日韩亚洲国产综合| 制服丝袜国产精品| 久久精品人人做人人综合 | 亚洲女人小视频在线观看| 午夜影视日本亚洲欧洲精品| 免费人成网站在线观看欧美高清| 国产二区国产一区在线观看| 91视视频在线观看入口直接观看www| 欧美色爱综合网| www国产精品av| 最近中文字幕一区二区三区| 亚洲第一成年网| 国产乱码一区二区三区| 91蜜桃在线观看| 日韩免费观看高清完整版| 国产精品久久久久久亚洲毛片| 亚洲综合免费观看高清完整版在线 | 91成人免费在线视频| 日韩欧美中文字幕一区| 中文字幕乱码亚洲精品一区| 亚洲国产aⅴ天堂久久| 国产精品一二三| 欧美视频在线播放| 国产视频不卡一区| 五月天视频一区| 不卡一区二区三区四区| 欧美丰满美乳xxx高潮www| 国产欧美精品国产国产专区| 亚洲一本大道在线| 国产福利91精品一区| 欧美日韩精品久久久| 久久久不卡网国产精品二区| 一区二区三区成人| 国产99久久久久| 日韩欧美一级片| 樱花影视一区二区| 国产suv精品一区二区6|