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

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

?? multitreeui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號:
/* * @(#)MultiTreeUI.java	1.32 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.TreeUI;import java.awt.Rectangle;import javax.swing.JTree;import javax.swing.tree.TreePath;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>TreeUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.32 12/19/03 17:39:46 * @author  Otto Multey */public class MultiTreeUI extends TreeUI {    /**     * 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);    }////////////////////// TreeUI methods////////////////////    /**     * Invokes the <code>getPathBounds</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 getPathBounds(JTree a, TreePath b) {        Rectangle returnValue =             ((TreeUI) (uis.elementAt(0))).getPathBounds(a,b);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).getPathBounds(a,b);        }        return returnValue;    }    /**     * Invokes the <code>getPathForRow</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 TreePath getPathForRow(JTree a, int b) {        TreePath returnValue =             ((TreeUI) (uis.elementAt(0))).getPathForRow(a,b);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).getPathForRow(a,b);        }        return returnValue;    }    /**     * Invokes the <code>getRowForPath</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 getRowForPath(JTree a, TreePath b) {        int returnValue =             ((TreeUI) (uis.elementAt(0))).getRowForPath(a,b);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).getRowForPath(a,b);        }        return returnValue;    }    /**     * Invokes the <code>getRowCount</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 getRowCount(JTree a) {        int returnValue =             ((TreeUI) (uis.elementAt(0))).getRowCount(a);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).getRowCount(a);        }        return returnValue;    }    /**     * Invokes the <code>getClosestPathForLocation</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 TreePath getClosestPathForLocation(JTree a, int b, int c) {        TreePath returnValue =             ((TreeUI) (uis.elementAt(0))).getClosestPathForLocation(a,b,c);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).getClosestPathForLocation(a,b,c);        }        return returnValue;    }    /**     * Invokes the <code>isEditing</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 isEditing(JTree a) {        boolean returnValue =             ((TreeUI) (uis.elementAt(0))).isEditing(a);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).isEditing(a);        }        return returnValue;    }    /**     * Invokes the <code>stopEditing</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 stopEditing(JTree a) {        boolean returnValue =             ((TreeUI) (uis.elementAt(0))).stopEditing(a);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).stopEditing(a);        }        return returnValue;    }    /**     * Invokes the <code>cancelEditing</code> method on each UI handled by this object.     */    public void cancelEditing(JTree a) {        for (int i = 0; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).cancelEditing(a);        }    }    /**     * Invokes the <code>startEditingAtPath</code> method on each UI handled by this object.     */    public void startEditingAtPath(JTree a, TreePath b) {        for (int i = 0; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).startEditingAtPath(a,b);        }    }    /**     * Invokes the <code>getEditingPath</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 TreePath getEditingPath(JTree a) {        TreePath returnValue =             ((TreeUI) (uis.elementAt(0))).getEditingPath(a);        for (int i = 1; i < uis.size(); i++) {            ((TreeUI) (uis.elementAt(i))).getEditingPath(a);        }        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 MultiTreeUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiTreeUI) 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
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
波多野洁衣一区| 一区二区三区av电影| 免费日本视频一区| 日韩欧美亚洲国产另类| 狠狠色综合日日| 国产日本欧美一区二区| www.综合网.com| 亚洲国产欧美日韩另类综合| 91精品免费在线| 国产精品香蕉一区二区三区| 国产精品网曝门| 欧美影院一区二区| 蜜桃视频在线一区| 国产网站一区二区三区| 91丝袜美女网| 亚洲成人高清在线| 欧美精品一区视频| 99re在线视频这里只有精品| 五月综合激情网| 国产欧美一区在线| 在线免费观看一区| 美女视频黄免费的久久 | 国产三级精品三级在线专区| 99天天综合性| 丝袜美腿一区二区三区| 久久久久久久精| 在线观看国产91| 国产成人自拍高清视频在线免费播放| 亚洲天天做日日做天天谢日日欢 | 另类欧美日韩国产在线| 国产精品人成在线观看免费 | 日韩欧美一二三四区| 成人av网站在线| 天堂一区二区在线| 国产精品国产精品国产专区不片| 欧美日韩电影在线播放| 国产传媒日韩欧美成人| 亚洲va韩国va欧美va精品 | 欧美一区二区成人6969| 成人av午夜电影| 久久99国产精品免费| 亚洲精品美腿丝袜| 国产日韩欧美不卡在线| 91麻豆精品国产综合久久久久久| 成人av电影在线播放| 久草热8精品视频在线观看| 亚洲激情男女视频| 久久久久久亚洲综合| 欧美精品日韩一区| 色偷偷久久人人79超碰人人澡| 国产精品综合二区| 日欧美一区二区| 一区二区三区资源| 国产精品女主播av| 精品久久一区二区三区| 欧美电影在线免费观看| 色婷婷亚洲精品| 不卡欧美aaaaa| 懂色av一区二区三区蜜臀| 蜜臀av在线播放一区二区三区| 亚洲成a人v欧美综合天堂| 综合久久国产九一剧情麻豆| 国产欧美日韩综合精品一区二区| 日韩精品一区二区三区视频播放| 欧美日韩国产美| 欧美午夜一区二区| 欧美在线一区二区| 在线免费不卡视频| 日本久久一区二区| 日本道色综合久久| 在线精品视频免费播放| 色偷偷88欧美精品久久久| 97精品久久久久中文字幕| 成人av在线影院| 99视频在线精品| 色老头久久综合| 欧美亚洲动漫精品| 欧美日韩免费电影| 欧美精品国产精品| 欧美一级在线观看| 日韩女优视频免费观看| 欧美精品一区二区在线播放| 国产午夜精品在线观看| 国产日韩欧美一区二区三区综合| 欧美经典一区二区三区| 中文字幕av一区二区三区免费看| 国产精品久久久久久久久搜平片 | 国内精品久久久久影院一蜜桃| 国产一区二区导航在线播放| 国产激情91久久精品导航| 成人午夜在线播放| 色综合久久综合网欧美综合网| 色婷婷亚洲精品| 69p69国产精品| 久久蜜桃av一区精品变态类天堂| 国产午夜亚洲精品理论片色戒 | 日韩小视频在线观看专区| 日韩免费视频一区| 国产亚洲精品bt天堂精选| 中文字幕中文字幕一区| 亚洲曰韩产成在线| 青青草国产精品亚洲专区无| 九九九精品视频| 99久久精品99国产精品| 欧美影院精品一区| 精品国产一区二区亚洲人成毛片| www国产成人免费观看视频 深夜成人网 | 国产精品日韩成人| 亚洲国产精品久久不卡毛片 | 日韩在线卡一卡二| 国产精品77777| 欧美性视频一区二区三区| 欧美大片国产精品| 亚洲人成精品久久久久| 日韩精品一区第一页| 顶级嫩模精品视频在线看| 在线观看免费成人| 久久久99免费| 亚洲一区av在线| 国产成人高清在线| 欧美日韩免费观看一区二区三区 | 蜜臀久久久99精品久久久久久| 国产福利视频一区二区三区| 欧美性大战久久久久久久蜜臀| 久久精品视频在线免费观看| 午夜久久久久久电影| 不卡视频一二三四| 日韩精品综合一本久道在线视频| 亚洲丝袜精品丝袜在线| 精品影视av免费| 欧美日韩久久久一区| 中文字幕在线不卡国产视频| 男女视频一区二区| 欧美午夜一区二区| 国产精品盗摄一区二区三区| 国产一区二区免费看| 91精品国产综合久久福利软件 | 国产高清亚洲一区| 56国语精品自产拍在线观看| 亚洲少妇中出一区| 国产一区二区精品久久| 这里只有精品电影| 亚洲高清免费视频| 91福利视频网站| 最好看的中文字幕久久| 国产suv一区二区三区88区| 日韩欧美在线不卡| 亚洲成人精品一区| 93久久精品日日躁夜夜躁欧美| 久久精品亚洲精品国产欧美| 久久精工是国产品牌吗| 欧美精品丝袜久久久中文字幕| 一区二区三区在线视频免费 | av成人免费在线| 国产午夜精品福利| 国产精品 日产精品 欧美精品| 欧美mv日韩mv国产| 久久国产视频网| 精品理论电影在线| 狠狠色丁香婷婷综合| 日韩一区二区免费在线观看| 香蕉影视欧美成人| 欧美性受极品xxxx喷水| 国产精品久久久久久久久久久免费看 | 国产一区二区导航在线播放| 精品三级在线观看| 久久成人精品无人区| 91精品国产综合久久婷婷香蕉| 日韩专区中文字幕一区二区| 在线不卡a资源高清| 五月天丁香久久| 制服丝袜中文字幕一区| 日韩国产欧美三级| 欧美一级高清大全免费观看| 丝袜美腿亚洲综合| 日韩欧美激情四射| 国产精品一品视频| 国产精品久久午夜夜伦鲁鲁| 99久久精品国产毛片| 亚洲综合激情另类小说区| 欧美日韩在线播| 久久99国产精品免费网站| 久久久国产午夜精品| 99国产精品久久久| 亚洲午夜精品在线| 日韩午夜激情免费电影| 国产精品77777| 亚洲免费电影在线| 欧美精品在线一区二区三区| 看片的网站亚洲| 国产精品乱子久久久久| 欧美午夜精品久久久| 六月丁香婷婷色狠狠久久| 国产欧美精品一区| 欧美视频一区在线| 国产在线精品一区二区不卡了 | 成人av免费在线播放| 亚洲一区二区三区四区在线免费观看| 在线综合视频播放| 国产精品一卡二卡在线观看|