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

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

?? multitextui.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
字號:
/* * @(#)MultiTextUI.java	1.34 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.TextUI;import java.lang.String;import javax.swing.text.JTextComponent;import java.awt.Point;import java.awt.Rectangle;import javax.swing.text.BadLocationException;import javax.swing.text.Position;import javax.swing.text.EditorKit;import javax.swing.text.View;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>TextUI</code>s. *  * <p>This file was automatically generated by AutoMulti. * * @version 1.34 12/19/03 17:39:44 * @author  Otto Multey */public class MultiTextUI extends TextUI {    /**     * 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);    }////////////////////// TextUI methods////////////////////    /**     * Invokes the <code>getToolTipText</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 String getToolTipText(JTextComponent a, Point b) {        String returnValue =             ((TextUI) (uis.elementAt(0))).getToolTipText(a,b);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).getToolTipText(a,b);        }        return returnValue;    }    /**     * Invokes the <code>modelToView</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 modelToView(JTextComponent a, int b)            throws BadLocationException {        Rectangle returnValue =             ((TextUI) (uis.elementAt(0))).modelToView(a,b);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).modelToView(a,b);        }        return returnValue;    }    /**     * Invokes the <code>modelToView</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 modelToView(JTextComponent a, int b, Position.Bias c)            throws BadLocationException {        Rectangle returnValue =             ((TextUI) (uis.elementAt(0))).modelToView(a,b,c);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).modelToView(a,b,c);        }        return returnValue;    }    /**     * Invokes the <code>viewToModel</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 viewToModel(JTextComponent a, Point b) {        int returnValue =             ((TextUI) (uis.elementAt(0))).viewToModel(a,b);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).viewToModel(a,b);        }        return returnValue;    }    /**     * Invokes the <code>viewToModel</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 viewToModel(JTextComponent a, Point b, Position.Bias[] c) {        int returnValue =             ((TextUI) (uis.elementAt(0))).viewToModel(a,b,c);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).viewToModel(a,b,c);        }        return returnValue;    }    /**     * Invokes the <code>getNextVisualPositionFrom</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 getNextVisualPositionFrom(JTextComponent a, int b, Position.Bias c, int d, Position.Bias[] e)            throws BadLocationException {        int returnValue =             ((TextUI) (uis.elementAt(0))).getNextVisualPositionFrom(a,b,c,d,e);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).getNextVisualPositionFrom(a,b,c,d,e);        }        return returnValue;    }    /**     * Invokes the <code>damageRange</code> method on each UI handled by this object.     */    public void damageRange(JTextComponent a, int b, int c) {        for (int i = 0; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).damageRange(a,b,c);        }    }    /**     * Invokes the <code>damageRange</code> method on each UI handled by this object.     */    public void damageRange(JTextComponent a, int b, int c, Position.Bias d, Position.Bias e) {        for (int i = 0; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).damageRange(a,b,c,d,e);        }    }    /**     * Invokes the <code>getEditorKit</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 EditorKit getEditorKit(JTextComponent a) {        EditorKit returnValue =             ((TextUI) (uis.elementAt(0))).getEditorKit(a);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).getEditorKit(a);        }        return returnValue;    }    /**     * Invokes the <code>getRootView</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 View getRootView(JTextComponent a) {        View returnValue =             ((TextUI) (uis.elementAt(0))).getRootView(a);        for (int i = 1; i < uis.size(); i++) {            ((TextUI) (uis.elementAt(i))).getRootView(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 MultiTextUI();        return MultiLookAndFeel.createUIs(mui,                                          ((MultiTextUI) 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一区二区三区免费野_久草精品视频
国产中文字幕一区| 欧美性猛交xxxx黑人交| 日本福利一区二区| 欧美变态tickling挠脚心| 一区二区三区日韩欧美| 极品少妇xxxx精品少妇| 欧美日韩国产综合一区二区| 国产精品毛片久久久久久久| 看电影不卡的网站| 精品视频在线免费观看| 国产精品久久久久久久久免费相片 | 亚洲在线成人精品| 久久97超碰国产精品超碰| 欧美探花视频资源| 综合av第一页| 成人激情综合网站| 久久久精品欧美丰满| 热久久久久久久| 在线不卡中文字幕| 亚洲va韩国va欧美va精品| 在线亚洲一区观看| 亚洲视频香蕉人妖| 99天天综合性| 国产精品国产三级国产三级人妇| 韩国av一区二区| 精品国产一二三区| 九九九久久久精品| 精品盗摄一区二区三区| 久久精品72免费观看| 日韩欧美成人一区二区| 免费高清在线一区| 欧美精品一区二区不卡| 久草中文综合在线| 久久精品无码一区二区三区| 国产在线国偷精品产拍免费yy| 欧美成人一区二区| 激情图区综合网| 国产视频一区在线播放| 国产高清成人在线| 亚洲女与黑人做爰| 欧美午夜宅男影院| 日本aⅴ免费视频一区二区三区 | 偷偷要91色婷婷| 欧美精选一区二区| 另类调教123区 | 国产成人午夜视频| 国产精品久久久久久久久久免费看| 成人午夜短视频| 亚洲乱码国产乱码精品精可以看| 色婷婷亚洲一区二区三区| 亚洲福利视频三区| 日韩视频一区在线观看| 国产精品自拍在线| 亚洲丝袜自拍清纯另类| 欧美午夜寂寞影院| 韩国毛片一区二区三区| 国产精品污污网站在线观看 | 成人性生交大合| 亚洲免费观看高清在线观看| 欧美久久久久久蜜桃| 国内精品视频666| 亚洲男人的天堂一区二区| 欧美精品乱码久久久久久按摩| 久久精品国产免费| 亚洲日本一区二区三区| 欧美精品tushy高清| 国产91精品露脸国语对白| 一区二区三区四区不卡视频| 欧美不卡一区二区| 91丨九色丨黑人外教| 日本成人超碰在线观看| 久久久精品国产免大香伊| 欧洲视频一区二区| 国产精品一区二区久久精品爱涩| 亚洲自拍欧美精品| 国产无人区一区二区三区| 欧美日韩精品免费| 成人av网站在线观看| 美女脱光内衣内裤视频久久网站 | 欧美性色综合网| 国产精品白丝jk白祙喷水网站| 亚洲精选免费视频| 国产亚洲1区2区3区| 91精品国产一区二区三区蜜臀| 成人午夜av在线| 国产在线视频精品一区| 香蕉久久一区二区不卡无毒影院| 久久久久久免费毛片精品| 欧美狂野另类xxxxoooo| 91在线云播放| 国产激情视频一区二区在线观看| 日韩影院精彩在线| 亚洲男人的天堂网| 国产精品高潮呻吟| 久久综合色一综合色88| 6080亚洲精品一区二区| 日本乱码高清不卡字幕| caoporen国产精品视频| 国产成人av福利| 久久国产三级精品| 免费欧美在线视频| 日本不卡的三区四区五区| 亚洲成人先锋电影| 亚洲欧洲日产国产综合网| 国产欧美日韩另类一区| 2020国产成人综合网| 久久看人人爽人人| 精品88久久久久88久久久| 日韩小视频在线观看专区| 欧美一区二区三区喷汁尤物| 欧美高清视频在线高清观看mv色露露十八| 91麻豆福利精品推荐| 91碰在线视频| 91原创在线视频| 日本电影欧美片| 欧美艳星brazzers| 欧美日本在线播放| 欧美一级欧美一级在线播放| 日韩三级伦理片妻子的秘密按摩| 制服丝袜在线91| 欧美va亚洲va在线观看蝴蝶网| 欧美成人女星排行榜| 久久综合久久综合亚洲| 久久久99免费| 国产嫩草影院久久久久| 国产精品久久久久aaaa樱花| 亚洲视频在线观看一区| 亚洲成人综合视频| 日韩1区2区3区| 国产福利一区在线观看| 99久久er热在这里只有精品66| 色综合久久久久综合| 欧美日韩综合一区| 日韩一区二区在线看片| 亚洲精品一区二区在线观看| 久久精品亚洲乱码伦伦中文| 亚洲日本在线a| 日韩精品欧美精品| 国产成人一级电影| 色偷偷久久人人79超碰人人澡 | thepron国产精品| 91蜜桃视频在线| 在线播放欧美女士性生活| 日韩精品一区二区三区四区视频| 国产午夜精品久久| 亚洲国产精品精华液网站| 国内精品免费**视频| 色哦色哦哦色天天综合| 日韩欧美一区二区久久婷婷| 亚洲国产精品黑人久久久| 一区二区三区高清在线| 毛片不卡一区二区| 色综合天天综合网国产成人综合天| 99久久99久久精品国产片果冻| 欧美一区二区三区四区久久| 国产欧美一区视频| 午夜欧美2019年伦理 | 日韩—二三区免费观看av| 国产宾馆实践打屁股91| 欧美伦理影视网| 国产精品久久久久影院老司 | 丁香婷婷综合网| 欧美精品日韩综合在线| 亚洲天天做日日做天天谢日日欢| 奇米精品一区二区三区四区| 99精品一区二区| 久久综合色播五月| 日本三级亚洲精品| 色综合久久88色综合天天6| 久久色视频免费观看| 亚洲成人三级小说| 色综合咪咪久久| 日本一区二区成人在线| 蜜臀久久99精品久久久久宅男| 色综合久久精品| 国产精品美女久久久久aⅴ| 美女在线观看视频一区二区| 欧美日韩中文精品| 亚洲最大色网站| 成人激情综合网站| 中文字幕精品一区二区三区精品| 亚洲一区在线观看免费观看电影高清| 欧美日韩第一区日日骚| 一级日本不卡的影视| 不卡区在线中文字幕| 奇米精品一区二区三区四区| 色天使久久综合网天天| 国产精品欧美一区喷水| 91久久人澡人人添人人爽欧美| 久久综合网色—综合色88| 国产在线不卡视频| 午夜精品123| 2023国产精品自拍| 国产麻豆视频一区二区| 精品少妇一区二区三区免费观看| 青青草国产精品97视觉盛宴| 国产精品三级电影| 欧美日韩久久久一区| 亚洲成人高清在线| 欧美性videosxxxxx|