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

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

?? region.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* * @(#)Region.java	1.30 04/02/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.swing.plaf.synth;import javax.swing.*;import java.util.*;/** * A distinct rendering area of a Swing component.  A component may * support one or more regions.  Specific component regions are defined * by the typesafe enumeration in this class. * <p> * Regions are typically used as a way to identify the <code>Component</code>s * and areas a particular style is to apply to. Synth's file format allows you  * to bind styles based on the name of a <code>Region</code>.   * The name is derived from the field name of the constant: * <ol> *  <li>Map all characters to lowercase. *  <li>Map the first character to uppercase. *  <li>Map the first character after underscores to uppercase. *  <li>Remove all underscores. * </ol> * For example, to identify the <code>SPLIT_PANE</code> * <code>Region</code> you would use <code>SplitPane</code>. * The following shows a custom <code>SynthStyleFactory</code>  * that returns a specific style for split panes: * <pre> *    public SynthStyle getStyle(JComponent c, Region id) { *        if (id == Region.SPLIT_PANE) { *            return splitPaneStyle; *        } *        ... *    } * </pre> * The following <a href="doc-files/synthFileFormat.html">xml</a> * accomplishes the same thing: * <pre> * &lt;style id="splitPaneStyle"> *   ... * &lt;/style> * &lt;bind style="splitPaneStyle" type="region" key="SplitPane"/> * </pre> * * @version 1.30, 02/19/04 * @since 1.5 * @author Scott Violet */public class Region {    private static final Map uiToRegionMap = new HashMap();    private static final Map lowerCaseNameMap = new HashMap();    /**     * ArrowButton's are special types of buttons that also render a     * directional indicator, typically an arrow. ArrowButtons are used by      * composite components, for example ScrollBar's contain ArrowButtons.     * To bind a style to this <code>Region</code> use the name      * <code>ArrowButton</code>.     */    public static final Region ARROW_BUTTON = new Region("ArrowButton",                                                         "ArrowButtonUI");    /**     * Button region. To bind a style to this <code>Region</code> use the name      * <code>Button</code>.     */    public static final Region BUTTON = new Region("Button",                                                   "ButtonUI");    /**     * CheckBox region. To bind a style to this <code>Region</code> use the name      * <code>CheckBox</code>.      */    public static final Region CHECK_BOX = new Region("CheckBox",                                                   "CheckBoxUI");    /**     * CheckBoxMenuItem region. To bind a style to this <code>Region</code> use      * the name <code>CheckBoxMenuItem</code>.     */    public static final Region CHECK_BOX_MENU_ITEM = new Region(                                     "CheckBoxMenuItem", "CheckBoxMenuItemUI");    /**     * ColorChooser region. To bind a style to this <code>Region</code> use      * the name <code>ColorChooser</code>.     */    public static final Region COLOR_CHOOSER = new Region(                                     "ColorChooser", "ColorChooserUI");    /**     * ComboBox region. To bind a style to this <code>Region</code> use      * the name <code>ComboBox</code>.     */    public static final Region COMBO_BOX = new Region(                                     "ComboBox", "ComboBoxUI");    /**     * DesktopPane region. To bind a style to this <code>Region</code> use      * the name <code>DesktopPane</code>.     */    public static final Region DESKTOP_PANE = new Region("DesktopPane",                                                         "DesktopPaneUI");    /**     * DesktopIcon region. To bind a style to this <code>Region</code> use      * the name <code>DesktopIcon</code>.     */    public static final Region DESKTOP_ICON = new Region("DesktopIcon",                                                         "DesktopIconUI");    /**     * EditorPane region. To bind a style to this <code>Region</code> use      * the name <code>EditorPane</code>.     */    public static final Region EDITOR_PANE = new Region("EditorPane",                                                        "EditorPaneUI");    /**     * FileChooser region. To bind a style to this <code>Region</code> use      * the name <code>FileChooser</code>.     */    public static final Region FILE_CHOOSER = new Region("FileChooser",                                                         "FileChooserUI");    /**     * FormattedTextField region. To bind a style to this <code>Region</code> use      * the name <code>FormattedTextField</code>.     */    public static final Region FORMATTED_TEXT_FIELD = new Region(                            "FormattedTextField", "FormattedTextFieldUI");    /**     * InternalFrame region. To bind a style to this <code>Region</code> use      * the name <code>InternalFrame</code>.     */    public static final Region INTERNAL_FRAME = new Region("InternalFrame",                                                           "InternalFrameUI");    /**     * TitlePane of an InternalFrame. The TitlePane typically      * shows a menu, title, widgets to manipulate the internal frame.      * To bind a style to this <code>Region</code> use the name      * <code>InternalFrameTitlePane</code>.     */    public static final Region INTERNAL_FRAME_TITLE_PANE =                         new Region("InternalFrameTitlePane",                                    "InternalFrameTitlePaneUI");    /**     * Label region. To bind a style to this <code>Region</code> use the name      * <code>Label</code>.     */    public static final Region LABEL = new Region("Label", "LabelUI");    /**     * List region. To bind a style to this <code>Region</code> use the name      * <code>List</code>.      */    public static final Region LIST = new Region("List", "ListUI");    /**     * Menu region. To bind a style to this <code>Region</code> use the name      * <code>Menu</code>.     */    public static final Region MENU = new Region("Menu", "MenuUI");    /**     * MenuBar region. To bind a style to this <code>Region</code> use the name      * <code>MenuBar</code>.     */    public static final Region MENU_BAR = new Region("MenuBar", "MenuBarUI");    /**     * MenuItem region. To bind a style to this <code>Region</code> use the name      * <code>MenuItem</code>.     */    public static final Region MENU_ITEM = new Region("MenuItem","MenuItemUI");    /**     * Accelerator region of a MenuItem. To bind a style to this      * <code>Region</code> use the name <code>MenuItemAccelerator</code>.     */    public static final Region MENU_ITEM_ACCELERATOR = new Region(                                         "MenuItemAccelerator");    /**     * OptionPane region. To bind a style to this <code>Region</code> use      * the name <code>OptionPane</code>.     */    public static final Region OPTION_PANE = new Region("OptionPane",                                                        "OptionPaneUI");    /**     * Panel region. To bind a style to this <code>Region</code> use the name      * <code>Panel</code>.     */    public static final Region PANEL = new Region("Panel", "PanelUI");    /**     * PasswordField region. To bind a style to this <code>Region</code> use      * the name <code>PasswordField</code>.     */    public static final Region PASSWORD_FIELD = new Region("PasswordField",                                                           "PasswordFieldUI");    /**     * PopupMenu region. To bind a style to this <code>Region</code> use      * the name <code>PopupMenu</code>.     */    public static final Region POPUP_MENU = new Region("PopupMenu",                                                       "PopupMenuUI");    /**     * PopupMenuSeparator region. To bind a style to this <code>Region</code>     * use the name <code>PopupMenuSeparator</code>.     */    public static final Region POPUP_MENU_SEPARATOR = new Region(                           "PopupMenuSeparator", "PopupMenuSeparatorUI");    /**     * ProgressBar region. To bind a style to this <code>Region</code>     * use the name <code>ProgressBar</code>.     */    public static final Region PROGRESS_BAR = new Region("ProgressBar",                                                         "ProgressBarUI");    /**     * RadioButton region. To bind a style to this <code>Region</code>     * use the name <code>RadioButton</code>.     */    public static final Region RADIO_BUTTON = new Region(                               "RadioButton", "RadioButtonUI");    /**     * RegionButtonMenuItem region. To bind a style to this <code>Region</code>     * use the name <code>RadioButtonMenuItem</code>.     */    public static final Region RADIO_BUTTON_MENU_ITEM = new Region(                               "RadioButtonMenuItem", "RadioButtonMenuItemUI");    /**     * RootPane region. To bind a style to this <code>Region</code> use      * the name <code>RootPane</code>.     */    public static final Region ROOT_PANE = new Region("RootPane",                                                      "RootPaneUI");    /**     * ScrollBar region. To bind a style to this <code>Region</code> use      * the name <code>ScrollBar</code>.     */    public static final Region SCROLL_BAR = new Region("ScrollBar",                                                       "ScrollBarUI");    /**     * Track of the ScrollBar. To bind a style to this <code>Region</code> use      * the name <code>ScrollBarTrack</code>.     */    public static final Region SCROLL_BAR_TRACK = new Region("ScrollBarTrack");    /**     * Thumb of the ScrollBar. The thumb is the region of the ScrollBar      * that gives a graphical depiction of what percentage of the View is 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线视频国内一区二区| 美女视频一区二区三区| 97se亚洲国产综合自在线不卡| 久久久99久久| a4yy欧美一区二区三区| 亚洲精品国产成人久久av盗摄| 色哟哟日韩精品| 亚洲图片一区二区| 欧美大黄免费观看| 成人免费av资源| 一区二区三区高清在线| 欧美日韩一区高清| 精品一二线国产| 国产精品护士白丝一区av| 色婷婷香蕉在线一区二区| 亚洲国产精品麻豆| 欧美不卡一区二区三区四区| 夫妻av一区二区| 一区二区三区在线播放| 日韩欧美国产一二三区| 成人精品免费网站| 日韩 欧美一区二区三区| 国产亚洲婷婷免费| 精品视频一区二区不卡| 国产一区二区在线看| 亚洲精选视频在线| 日韩午夜在线播放| 91丨九色丨国产丨porny| 丝袜亚洲精品中文字幕一区| 国产欧美一区二区精品忘忧草| 欧美亚洲国产一区二区三区va| 黄色资源网久久资源365| 一区二区三区四区不卡在线| 日韩一级免费观看| 一本到一区二区三区| 捆绑紧缚一区二区三区视频| 亚洲日本丝袜连裤袜办公室| 欧美www视频| 欧美在线观看视频在线| 国产99精品国产| 美女被吸乳得到大胸91| 亚洲综合图片区| 国产精品久久久久久久久图文区| 欧美日韩激情在线| 99精品久久只有精品| 麻豆精品国产传媒mv男同| 一区二区三区蜜桃网| 国产精品色呦呦| 欧美精品一区二区蜜臀亚洲| 欧美视频一区二区三区四区| 不卡在线观看av| 久久99精品国产麻豆婷婷| 亚洲一区二区三区精品在线| 国产精品无码永久免费888| 欧美va日韩va| 欧美乱妇23p| 色老综合老女人久久久| 丁香一区二区三区| 国产裸体歌舞团一区二区| 奇米一区二区三区| 亚洲激情成人在线| 亚洲欧美日韩国产另类专区| 国产午夜亚洲精品不卡| www日韩大片| 日韩欧美亚洲另类制服综合在线 | 激情久久五月天| 亚洲动漫第一页| 亚洲最大色网站| 中文字幕一区二| 中文字幕一区二区在线观看 | 99re这里只有精品视频首页| 麻豆精品一区二区综合av| 日本va欧美va瓶| 奇米影视在线99精品| 久久精品国产在热久久| 免费在线观看一区二区三区| 蜜臀久久99精品久久久久久9| 日韩精品欧美成人高清一区二区| 天天做天天摸天天爽国产一区 | 精久久久久久久久久久| 韩国欧美国产一区| 国产一区二区在线视频| 成人永久aaa| jlzzjlzz亚洲日本少妇| 91麻豆国产福利在线观看| 在线看日本不卡| 91麻豆精品国产自产在线| 日韩欧美激情在线| 久久精品亚洲乱码伦伦中文| 一区视频在线播放| 一区二区在线观看视频| 午夜精品一区二区三区电影天堂 | 国产成人99久久亚洲综合精品| 国产精品一级片| 91免费版在线看| 欧美综合视频在线观看| 日韩一区二区影院| 国产亚洲1区2区3区| 亚洲精品视频在线观看免费| 亚洲综合丝袜美腿| 蜜臀av性久久久久蜜臀aⅴ流畅| 极品少妇xxxx精品少妇偷拍| 国产成人精品影院| 欧洲色大大久久| 日韩午夜中文字幕| 国产精品福利一区| 午夜精品成人在线视频| 激情都市一区二区| 91浏览器入口在线观看| 日韩欧美美女一区二区三区| 国产精品成人网| 婷婷中文字幕一区三区| 丰满白嫩尤物一区二区| 在线观看亚洲一区| 26uuu亚洲综合色欧美| 亚洲精品视频在线| 精彩视频一区二区三区| 91在线观看成人| 日韩欧美亚洲一区二区| 亚洲欧美日韩电影| 韩国v欧美v亚洲v日本v| 91国偷自产一区二区三区观看| 欧美成人一区二区三区| 亚洲视频电影在线| 国产在线不卡一区| 欧美蜜桃一区二区三区| 国产精品理论片| 免费高清视频精品| 欧美性色综合网| 国产精品美女久久久久高潮| 三级久久三级久久久| 99re成人精品视频| 久久久久久毛片| 免费观看30秒视频久久| 欧美自拍丝袜亚洲| 国产精品色哟哟| 久久 天天综合| 欧美精品aⅴ在线视频| 日韩理论在线观看| 国产一区二三区| 日韩视频国产视频| 亚洲国产美国国产综合一区二区| 国产成人精品午夜视频免费| 91精品国产91综合久久蜜臀| 一区二区三区美女| 91香蕉视频污在线| 欧美成人aa大片| 肉色丝袜一区二区| 欧美中文字幕一区二区三区| 国产精品九色蝌蚪自拍| 国产风韵犹存在线视精品| 精品日韩一区二区三区免费视频| 亚洲成人免费影院| 欧美日韩精品一区二区三区四区| 亚洲欧洲精品一区二区精品久久久| 国产美女一区二区三区| 日韩欧美一级二级三级| 蜜桃免费网站一区二区三区| 欧美一区二区三区在线观看| 天堂在线亚洲视频| 欧美猛男gaygay网站| 一区二区欧美精品| 在线观看精品一区| 有码一区二区三区| 色婷婷久久久亚洲一区二区三区| 中文字幕一区二区三区四区不卡 | 丰满白嫩尤物一区二区| 国产嫩草影院久久久久| 国产一区二区视频在线播放| 欧美成人aa大片| 国产尤物一区二区在线| 久久一区二区三区四区| 国产高清无密码一区二区三区| 久久综合视频网| 成人影视亚洲图片在线| 中文字幕一区二区三区色视频| 国产suv精品一区二区883| 国产精品美女久久久久久2018 | 欧美日韩大陆在线| 日韩电影在线观看网站| 精品美女一区二区| 国产suv精品一区二区三区 | 亚洲最新在线观看| 欧美精品国产精品| 激情久久五月天| 久久亚洲综合av| 91亚洲精品久久久蜜桃| 亚洲精品一二三| 欧美一区二区精品久久911| 国产综合色产在线精品| 欧美韩国日本综合| 色婷婷av一区二区三区大白胸 | 日本韩国欧美三级| 视频在线观看91| 久久网站最新地址| 91视频精品在这里| 日韩中文字幕麻豆| 国产日韩欧美精品在线| 在线观看91精品国产入口| 麻豆一区二区三|