亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
日韩亚洲欧美在线观看| 99视频在线精品| 国产精品一区二区久久不卡| 国产精品一二三区在线| 国产成人免费在线观看不卡| 国产一区二区三区免费播放| 久久电影国产免费久久电影 | 日韩一区二区三区精品视频| 欧美日韩在线播放三区四区| 日韩欧美中文字幕公布| 日韩免费观看高清完整版在线观看| 欧美电影在线免费观看| 欧美成人一区二区三区| 国产色产综合色产在线视频| 国产精品国产馆在线真实露脸| 国产亚洲精品bt天堂精选| 亚洲人成网站精品片在线观看| 亚洲视频一区在线| 夜色激情一区二区| 久久精品国产一区二区三区免费看| 久久99精品久久只有精品| 91浏览器入口在线观看| 国产精品久久久久久妇女6080 | 中文字幕一区二区三| 视频一区国产视频| 99久久国产综合精品色伊| 欧美一级一区二区| 亚洲激情男女视频| 99久久综合国产精品| 欧美白人最猛性xxxxx69交| 国产精品国产三级国产普通话99| 日韩av中文字幕一区二区三区| 色综合 综合色| 国产精品国产三级国产aⅴ入口| 欧美日韩国产片| 亚洲精品免费一二三区| 国产mv日韩mv欧美| 久久夜色精品国产噜噜av| 婷婷六月综合网| 日韩三级伦理片妻子的秘密按摩| 亚洲国产日韩一级| 日韩欧美电影一区| 国内精品伊人久久久久av一坑| 日本一区二区在线不卡| aaa欧美大片| 亚洲午夜精品17c| 久久综合久久综合亚洲| 处破女av一区二区| 五月天丁香久久| 亚洲综合一区二区三区| 色偷偷成人一区二区三区91| 国产亚洲成年网址在线观看| 久久成人免费日本黄色| 久久精品免视看| 欧美性视频一区二区三区| 国产精品乡下勾搭老头1| 国产精品理论片| 日韩三级伦理片妻子的秘密按摩| 色综合激情久久| 久久国产精品99久久久久久老狼| 国产女人aaa级久久久级 | 亚洲欧洲制服丝袜| 欧美日韩一区二区三区在线| 一区二区三区四区在线| 欧美激情一区在线观看| 91行情网站电视在线观看高清版| 一二三区精品视频| 日韩一区二区麻豆国产| 肉肉av福利一精品导航| 欧美高清在线视频| 色先锋资源久久综合| 毛片av中文字幕一区二区| 国产精品国产a| 欧美成人一区二区三区| 欧美午夜一区二区三区| 欧美揉bbbbb揉bbbbb| 欧美一级欧美一级在线播放| 宅男噜噜噜66一区二区66| 色综合色狠狠综合色| 丝袜诱惑制服诱惑色一区在线观看| 久久久av毛片精品| 欧美一区二区三区视频免费| 91黄色免费版| 欧美日韩美少妇| 91超碰这里只有精品国产| 成人动漫av在线| 91蜜桃免费观看视频| 欧美亚洲高清一区| 欧美日韩一级片在线观看| 欧美一级国产精品| 中文字幕一区二区三区精华液| 亚洲高清免费视频| 99久久精品国产一区二区三区| 韩国三级在线一区| 成人午夜免费av| 色婷婷av一区二区三区gif| 欧美三级三级三级爽爽爽| 欧美成人a视频| 亚洲视频中文字幕| 麻豆国产一区二区| 99精品国产视频| 国产精品国模大尺度视频| 中文字幕日韩av资源站| 亚洲六月丁香色婷婷综合久久 | 日韩久久久久久| 一区2区3区在线看| 欧美日韩一区 二区 三区 久久精品| 国产女主播一区| 国产亚洲精品久| 一区二区三区久久| 91蜜桃网址入口| 亚洲狼人国产精品| 亚洲精品国产一区二区三区四区在线| 亚洲国产成人av| 精品一区二区影视| 日韩欧美一区二区三区在线| 一区二区三区在线不卡| 成年人网站91| 亚洲激情图片qvod| 一本久久a久久精品亚洲| 久久精品夜色噜噜亚洲a∨| 午夜欧美视频在线观看| 色诱亚洲精品久久久久久| 久久久午夜电影| 蜜臀久久99精品久久久久久9| av一区二区三区黑人| 亚洲免费观看高清完整版在线观看 | 色综合中文字幕| 久久精品一区二区| av激情综合网| 伊人婷婷欧美激情| 成人av网站在线观看免费| 国产精品色呦呦| 一本久久综合亚洲鲁鲁五月天 | 欧美在线观看一区| 免费在线视频一区| 中文字幕一区二区三区乱码在线| 26uuu亚洲综合色| 99国产精品久久久久| 亚洲无人区一区| 在线看日韩精品电影| 日韩中文字幕不卡| 一区二区三区四区蜜桃| 国产日本一区二区| 在线免费观看日本一区| 国产成人亚洲综合a∨猫咪| 欧美色中文字幕| 国产在线观看免费一区| 一区二区三区日韩在线观看| 亚洲色欲色欲www| 性欧美大战久久久久久久久| 国产欧美综合在线| 精品福利视频一区二区三区| av不卡一区二区三区| 国产精品1024久久| 蜜臀久久久久久久| 日韩va亚洲va欧美va久久| 国产精品一区二区在线观看网站| 国产一区在线看| 美女视频网站久久| 麻豆国产91在线播放| 精品一区二区精品| 成人一区二区三区视频在线观看| 成人激情视频网站| 91色|porny| 91视频国产资源| 欧日韩精品视频| 欧美zozozo| 国产精品成人免费在线| 亚洲免费av高清| 国产一区二区中文字幕| 久久精品99国产精品日本| 国产在线一区观看| 国产在线麻豆精品观看| 91美女精品福利| 精品久久一区二区| 日韩高清不卡一区| 奇米影视在线99精品| 国产在线日韩欧美| 在线观看av不卡| 国产视频一区二区三区在线观看| 国产欧美精品一区二区色综合| 一区二区三区四区不卡在线| 国产一区二区网址| 一本色道久久综合精品竹菊| 欧美精品成人一区二区三区四区| 26uuu精品一区二区在线观看| 日日摸夜夜添夜夜添亚洲女人| 亚洲国产视频a| 国产成人在线观看| 国产精品一品二品| 欧美三级三级三级| 91精品国产丝袜白色高跟鞋| 欧美xxxx在线观看| 曰韩精品一区二区| 在线观看日韩国产| 一区二区三区在线免费观看 | 国产**成人网毛片九色| 丁香网亚洲国际| 欧美日韩中文另类|