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

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

?? css.java

?? gcc的組建
?? JAVA
字號:
/* CSS.java -- Provides CSS attributes   Copyright (C) 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package javax.swing.text.html;import java.util.HashMap;/** * Provides CSS attributes to be used by the HTML view classes. The constants * defined here are used as keys for text attributes for use in * {@link javax.swing.text.AttributeSet}s of {@link javax.swing.text.Element}s. * * @author Roman Kennke (kennke@aicas.com) */public class CSS{  /**   * Returns an array of all CSS attributes.   *   * @return All available CSS.Attribute objects.   */  public static CSS.Attribute[] getAllAttributeKeys()  {    Object[] src = Attribute.attributeMap.values().toArray();    CSS.Attribute[] dst = new CSS.Attribute[ src.length ];    System.arraycopy(src, 0, dst, 0, src.length);    return dst;  }  /**   * Returns an a given CSS attribute.   *   * @param name - The name of the attribute.   * @return The CSS attribute with the given name, or <code>null</code> if   * no attribute with that name exists.   */  public static CSS.Attribute getAttribute(String name)  {    return (CSS.Attribute)Attribute.attributeMap.get( name );  }  public static final class Attribute  {    /**     * The CSS attribute 'background'.     */    public static final Attribute BACKGROUND =      new Attribute("background", false, null);    /**     * The CSS attribute 'background-attachment'.     */    public static final Attribute BACKGROUND_ATTACHMENT =      new Attribute("background-attachment", false, "scroll");    /**     * The CSS attribute 'background-color'.     */    public static final Attribute BACKGROUND_COLOR =      new Attribute("background-color", false, "transparent");    /**     * The CSS attribute 'background-image'.     */    public static final Attribute BACKGROUND_IMAGE =      new Attribute("background-image", false, "none");    /**     * The CSS attribute 'background-position'.     */    public static final Attribute BACKGROUND_POSITION =      new Attribute("background-position", false, null);    /**     * The CSS attribute 'background-repeat'.     */    public static final Attribute BACKGROUND_REPEAT =      new Attribute("background-repeat", false, "repeat");    /**     * The CSS attribute 'border'.     */    public static final Attribute BORDER = new Attribute("border", false, null);    /**     * The CSS attribute 'border-bottom'.     */    public static final Attribute BORDER_BOTTOM =      new Attribute("border-bottom", false, null);    /**     * The CSS attribute 'border-bottom-width'.     */    public static final Attribute BORDER_BOTTOM_WIDTH =      new Attribute("border-bottom-width", false, "medium");    /**     * The CSS attribute 'border-color'.     */    public static final Attribute BORDER_COLOR =      new Attribute("border-color", false, "black");    /**     * The CSS attribute 'border-left'.     */    public static final Attribute BORDER_LEFT =      new Attribute("border-left", false, null);    /**     * The CSS attribute 'border-left-width'.     */    public static final Attribute BORDER_LEFT_WIDTH =      new Attribute("border-left-width", false, "medium");    /**     * The CSS attribute 'border-right'.     */    public static final Attribute BORDER_RIGHT =      new Attribute("border-right", false, null);    /**     * The CSS attribute 'border-right-width'.     */    public static final Attribute BORDER_RIGHT_WIDTH =      new Attribute("border-right-width", false, "medium");    /**     * The CSS attribute 'border-style'.     */    public static final Attribute BORDER_STYLE =      new Attribute("border-style", false, "none");    /**     * The CSS attribute 'border-top'.     */    public static final Attribute BORDER_TOP =      new Attribute("border-top", false, null);    /**     * The CSS attribute 'border-top-width'.     */    public static final Attribute BORDER_TOP_WIDTH =      new Attribute("border-top-width", false, "medium");    /**     * The CSS attribute 'border-width'.     */    public static final Attribute BORDER_WIDTH =      new Attribute("border-width", false, "medium");    /**     * The CSS attribute 'clear'.     */    public static final Attribute CLEAR = new Attribute("clear", false, "none");    /**     * The CSS attribute 'color'.     */    public static final Attribute COLOR = new Attribute("color", true, "black");    /**     * The CSS attribute 'display'.     */    public static final Attribute DISPLAY =      new Attribute("display", false, "block");    /**     * The CSS attribute 'float'.     */    public static final Attribute FLOAT = new Attribute("float", false, "none");    /**     * The CSS attribute 'font'.     */    public static final Attribute FONT = new Attribute("font", true, null);    /**     * The CSS attribute 'font-family'.     */    public static final Attribute FONT_FAMILY =      new Attribute("font-family", true, null);    /**     * The CSS attribute 'font-size'.     */    public static final Attribute FONT_SIZE =      new Attribute("font-size", true, "medium");    /**     * The CSS attribute 'font-style'.     */    public static final Attribute FONT_STYLE =      new Attribute("font-style", true, "normal");    /**     * The CSS attribute 'font-variant'.     */    public static final Attribute FONT_VARIANT =      new Attribute("font-variant", true, "normal");    /**     * The CSS attribute 'font-weight'.     */    public static final Attribute FONT_WEIGHT =      new Attribute("font-weight", true, "normal");    /**     * The CSS attribute 'height'.     */    public static final Attribute HEIGHT =      new Attribute("height", false, "auto");    /**     * The CSS attribute 'letter-spacing'.     */    public static final Attribute LETTER_SPACING =      new Attribute("letter-spacing", true, "normal");    /**     * The CSS attribute 'line-height'.     */    public static final Attribute LINE_HEIGHT =      new Attribute("line-height", true, "normal");    /**     * The CSS attribute 'list-style'.     */    public static final Attribute LIST_STYLE =      new Attribute("list-style", true, null);    /**     * The CSS attribute 'list-style-image'.     */    public static final Attribute LIST_STYLE_IMAGE =      new Attribute("list-style-image", true, "none");    /**     * The CSS attribute 'list-style-position'.     */    public static final Attribute LIST_STYLE_POSITION =      new Attribute("list-style-position", true, "outside");    /**     * The CSS attribute 'list-style-type'.     */    public static final Attribute LIST_STYLE_TYPE =      new Attribute("list-style-type", true, "disc");    /**     * The CSS attribute 'margin'.     */    public static final Attribute MARGIN = new Attribute("margin", false, null);    /**     * The CSS attribute 'margin-bottom'.     */    public static final Attribute MARGIN_BOTTOM =      new Attribute("margin-bottom", false, "0");    /**     * The CSS attribute 'margin-left'.     */    public static final Attribute MARGIN_LEFT =      new Attribute("margin-left", false, "0");    /**     * The CSS attribute 'margin-right'.     */    public static final Attribute MARGIN_RIGHT =      new Attribute("margin-right", false, "0");    /**     * The CSS attribute 'margin-top'.     */    public static final Attribute MARGIN_TOP =      new Attribute("margin-top", false, "0");    /**     * The CSS attribute 'padding'.     */    public static final Attribute PADDING =      new Attribute("padding", false, null);    /**     * The CSS attribute 'padding-bottom'.     */    public static final Attribute PADDING_BOTTOM =      new Attribute("padding-bottom", false, "0");    /**     * The CSS attribute 'padding-left'.     */    public static final Attribute PADDING_LEFT =      new Attribute("padding-left", false, "0");    /**     * The CSS attribute 'padding-right'.     */    public static final Attribute PADDING_RIGHT =      new Attribute("padding-right", false, "0");    /**     * The CSS attribute 'padding-top'.     */    public static final Attribute PADDING_TOP =      new Attribute("padding-top", false, "0");    /**     * The CSS attribute 'text-align'.     */    public static final Attribute TEXT_ALIGN =      new Attribute("text-align", true, null);    /**     * The CSS attribute 'text-decoration'.     */    public static final Attribute TEXT_DECORATION =      new Attribute("text-decoration", true, "none");    /**     * The CSS attribute 'text-indent'.     */    public static final Attribute TEXT_INDENT =      new Attribute("text-indent", true, "0");    /**     * The CSS attribute 'text-transform'.     */    public static final Attribute TEXT_TRANSFORM =      new Attribute("text-transform", true, "none");    /**     * The CSS attribute 'vertical-align'.     */    public static final Attribute VERTICAL_ALIGN =      new Attribute("vertical-align", false, "baseline");    /**     * The CSS attribute 'white-space'.     */    public static final Attribute WHITE_SPACE =      new Attribute("white-space", true, "normal");    /**     * The CSS attribute 'width'.     */    public static final Attribute WIDTH =      new Attribute("width", false, "auto");    /**     * The CSS attribute 'word-spacing'.     */    public static final Attribute WORD_SPACING =      new Attribute("word-spacing", true, "normal");    /**     * The attribute string.     */    String attStr;    /**     * Indicates if this attribute should be inherited from it's parent or     * not.     */    boolean isInherited;    /**     * A default value for this attribute if one exists, otherwise null.     */    String defaultValue;    /**     * A HashMap of all attributes.     */    static HashMap attributeMap;    /**     * Creates a new Attribute instance with the specified values.     *     * @param attr the attribute string     * @param inherited if the attribute should be inherited or not     * @param def a default value; may be <code>null</code>      */    Attribute(String attr, boolean inherited, String def)    {      attStr = attr;      isInherited = inherited;      defaultValue = def;      if( attributeMap == null)	attributeMap = new HashMap();      attributeMap.put( attr, this );    }    /**     * Returns the string representation of this attribute as specified     * in the CSS specification.     */    public String toString()    {      return attStr;    }    /**     * Returns <code>true</code> if the attribute should be inherited from     * the parent, <code>false</code> otherwise.     *     * @return <code>true</code> if the attribute should be inherited from     *         the parent, <code>false</code> otherwise     */    public boolean isInherited()    {      return isInherited;    }    /**     * Returns the default value of this attribute if one exists,     * <code>null</code> otherwise.     *     * @return the default value of this attribute if one exists,     *         <code>null</code> otherwise     */    public String getDefaultValue()    {      return defaultValue;    }  }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美日韩另类视频免费观看| 国产日韩亚洲欧美综合| 国产不卡视频在线观看| 亚洲精品第一国产综合野| 欧美精品一区二区高清在线观看| 99国产精品久| 国产福利一区二区三区在线视频| 亚洲丶国产丶欧美一区二区三区| 中文字幕乱码久久午夜不卡| 3d动漫精品啪啪1区2区免费| 色噜噜偷拍精品综合在线| 国产一区二区三区精品欧美日韩一区二区三区 | 亚洲精品ww久久久久久p站| 欧美成人一区二区三区在线观看| 色激情天天射综合网| 国产成人免费在线| 老汉av免费一区二区三区| 亚洲制服丝袜在线| 日韩毛片高清在线播放| 国产三级精品视频| xnxx国产精品| 日韩精品中文字幕在线一区| 亚洲特级片在线| 中文字幕av一区二区三区高| 精品久久久久久久久久久久久久久| 欧美日韩三级一区二区| 日本精品一级二级| 一本久久a久久精品亚洲| 北条麻妃一区二区三区| 成人性生交大片免费| 国产99久久久国产精品免费看| 美腿丝袜在线亚洲一区| 蜜臀av性久久久久蜜臀aⅴ流畅 | 国产精品1区二区.| 国内精品久久久久影院薰衣草| 免费成人av在线播放| 青青草国产成人av片免费| 日韩激情视频网站| 天堂va蜜桃一区二区三区漫画版| 亚洲福利一区二区| 天堂av在线一区| 免费成人在线影院| 韩国理伦片一区二区三区在线播放| 麻豆国产精品官网| 国产毛片精品国产一区二区三区| 国产一区二区在线影院| 国产福利一区二区| 菠萝蜜视频在线观看一区| gogogo免费视频观看亚洲一| 国产欧美精品一区二区色综合| 久久久一区二区| 亚洲国产成人在线| 亚洲女厕所小便bbb| 亚洲人吸女人奶水| 视频一区二区中文字幕| 麻豆国产精品视频| 粉嫩aⅴ一区二区三区四区五区| 成人的网站免费观看| 色婷婷av一区二区三区之一色屋| 欧美色成人综合| 日韩欧美的一区| 欧美国产精品劲爆| 一区二区三区美女视频| 日本欧美一区二区三区| 国产一区二区毛片| 99re亚洲国产精品| 欧美精品电影在线播放| 精品88久久久久88久久久| 国产精品嫩草99a| 亚洲国产精品一区二区www在线| 蜜臀a∨国产成人精品| 成人免费看黄yyy456| 一本大道久久a久久精二百| 91精品国产综合久久久久久久 | 婷婷六月综合亚洲| 捆绑紧缚一区二区三区视频| 成熟亚洲日本毛茸茸凸凹| 日本精品视频一区二区| 欧美成人精品1314www| 中文字幕中文字幕一区| 视频一区视频二区在线观看| 国产成人aaa| 欧美精品18+| 国产精品你懂的| 蜜臀久久99精品久久久画质超高清| 福利一区二区在线| 欧美一区永久视频免费观看| 国产精品嫩草99a| 日韩精品欧美成人高清一区二区| 国产91丝袜在线18| 91精品国产一区二区三区蜜臀 | 国产无人区一区二区三区| 一区二区三区中文字幕电影| 精品系列免费在线观看| 欧美亚洲国产一区在线观看网站| 久久人人97超碰com| 天堂一区二区在线| 91丨九色丨蝌蚪富婆spa| 精品va天堂亚洲国产| 午夜精品免费在线| 91免费国产在线观看| 久久―日本道色综合久久| 午夜精品久久久| 99精品热视频| 欧美国产日韩a欧美在线观看| 日本午夜精品视频在线观看| 91尤物视频在线观看| 国产日韩欧美一区二区三区乱码| 天堂va蜜桃一区二区三区漫画版| 色偷偷久久人人79超碰人人澡| 国产色产综合色产在线视频| 久久激情五月婷婷| 91精品午夜视频| 精品国产乱码久久久久久老虎| 99久久精品国产一区二区三区 | 狂野欧美性猛交blacked| 欧美日韩一区高清| 最近中文字幕一区二区三区| 国产精品一区在线观看乱码| 欧美一级片在线| 日韩精品久久理论片| 91福利精品视频| 亚洲视频一二三区| 成人h版在线观看| 久久亚洲一区二区三区明星换脸 | 欧美成人精品福利| 亚洲chinese男男1069| 色先锋资源久久综合| 国产视频一区不卡| 日韩激情一区二区| 在线免费观看日本欧美| 国产女主播视频一区二区| 免费观看30秒视频久久| 在线免费不卡电影| 精品不卡在线视频| 久久青草国产手机看片福利盒子| 美女网站视频久久| 欧美日韩久久一区二区| 玉米视频成人免费看| 成人动漫精品一区二区| 欧美国产一区二区| 久久99国产精品久久99果冻传媒| 欧美一区二区三区在线观看视频| 亚洲摸摸操操av| 在线免费观看日本欧美| 亚洲天堂免费看| 不卡的av电影| 中文字幕综合网| 99久久er热在这里只有精品66| 亚洲日本一区二区| 99精品视频在线免费观看| 国产精品国产精品国产专区不蜜| 国产一区二区女| 一区二区中文字幕在线| 成人av在线资源网站| 久久美女艺术照精彩视频福利播放 | 欧美日韩视频不卡| 日韩激情中文字幕| 欧美人与禽zozo性伦| 亚洲国产你懂的| 欧美吻胸吃奶大尺度电影| 亚洲制服欧美中文字幕中文字幕| 91玉足脚交白嫩脚丫在线播放| 亚洲欧美日韩人成在线播放| 99久久精品免费看| 亚洲一区免费观看| 欧美日韩精品三区| 日本特黄久久久高潮| 欧美tk—视频vk| 国产成人综合在线播放| 亚洲精品国产品国语在线app| kk眼镜猥琐国模调教系列一区二区| 亚洲综合无码一区二区| 欧美日韩一区精品| 久久国产日韩欧美精品| 欧美成人一区二区三区片免费 | 欧美成人一区二区| 美腿丝袜一区二区三区| 国产午夜精品一区二区| 国产成人亚洲精品狼色在线| 国产精品久久久久一区二区三区共 | proumb性欧美在线观看| 日韩高清一级片| 国产日产欧美一区二区视频| 99riav久久精品riav| 美女脱光内衣内裤视频久久网站 | 欧美一区二区三区四区视频| 成人性生交大合| 肉色丝袜一区二区| 国产精品成人免费| 日韩视频在线一区二区| 色狠狠综合天天综合综合| 国产一区欧美日韩| 亚洲成人av福利| 国产精品灌醉下药二区| 日韩女同互慰一区二区| 91国模大尺度私拍在线视频| 国产精品77777竹菊影视小说| 亚洲bt欧美bt精品| 亚洲免费在线观看|