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

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

?? html.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* * @(#)HTML.java	1.41 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.swing.text.html;import java.io.*;import java.util.Hashtable;import javax.swing.text.AttributeSet;import javax.swing.text.StyleConstants;import javax.swing.text.StyleContext;/** * Constants used in the <code>HTMLDocument</code>.  These * are basically tag and attribute definitions. * * @author  Timothy Prinzing * @author  Sunita Mani * * @version 1.41 12/19/03 */public class HTML {    /**     * Typesafe enumeration for an HTML tag.  Although the     * set of HTML tags is a closed set, we have left the     * set open so that people can add their own tag types     * to their custom parser and still communicate to the     * reader.     */    public static class Tag {	/** @since 1.3 */	public Tag() {}        /**         * Creates a new <code>Tag</code> with the specified <code>id</code>,         * and with <code>causesBreak</code> and <code>isBlock</code>         * set to <code>false</code>.         *         * @param id  the id of the new tag         */        protected Tag(String id) {	    this(id, false, false);	}        /**         * Creates a new <code>Tag</code> with the specified <code>id</code>;         * <code>causesBreak</code> and <code>isBlock</code> are defined         * by the user.         *         * @param id the id of the new tag         * @param causesBreak  <code>true</code> if this tag         *    causes a break to the flow of data         * @param isBlock <code>true</code> if the tag is used         *    to add structure to a document         */	protected Tag(String id, boolean causesBreak, boolean isBlock) {	    name = id;	    this.breakTag = causesBreak;	    this.blockTag = isBlock;	}	/**         * Returns <code>true</code> if this tag is a block         * tag, which is a tag used to add structure to a         * document.	 *          * @return <code>true</code> if this tag is a block         *   tag, otherwise returns <code>false</code>	 */	public boolean isBlock() {	    return blockTag;	}	/**         * Returns <code>true</code> if this tag causes a         * line break to the flow of data, otherwise returns         * <code>false</code>.	 * 	 * @return <code>true</code> if this tag causes a         *   line break to the flow of data, otherwise returns         *   <code>false</code>	 */	public boolean breaksFlow() {	    return breakTag;	}	/**	 * Returns <code>true</code> if this tag is pre-formatted,         * which is true if the tag is either <code>PRE</code> or         * <code>TEXTAREA</code>.         *         * @return <code>true</code> if this tag is pre-formatted,         *   otherwise returns <code>false</code>	 */	public boolean isPreformatted() {	    return (this == PRE || this == TEXTAREA);	}	/**	 * Returns the string representation of the	 * tag.         *         * @return the <code>String</code> representation of the tag	 */        public String toString() {	    return name;	}	boolean blockTag;	boolean breakTag;	String name;	boolean unknown;    	// --- Tag Names -----------------------------------    	public static final Tag A = new Tag("a");    	public static final Tag ADDRESS = new Tag("address");    	public static final Tag APPLET = new Tag("applet");    	public static final Tag AREA = new Tag("area");    	public static final Tag B = new Tag("b");    	public static final Tag BASE = new Tag("base");    	public static final Tag BASEFONT = new Tag("basefont");    	public static final Tag BIG = new Tag("big");    	public static final Tag BLOCKQUOTE = new Tag("blockquote", true, true);    	public static final Tag BODY = new Tag("body", true, true);    	public static final Tag BR = new Tag("br", true, false);    	public static final Tag CAPTION = new Tag("caption");    	public static final Tag CENTER = new Tag("center", true, false);    	public static final Tag CITE = new Tag("cite");    	public static final Tag CODE = new Tag("code");    	public static final Tag DD = new Tag("dd", true, true);    	public static final Tag DFN = new Tag("dfn");    	public static final Tag DIR = new Tag("dir", true, true);    	public static final Tag DIV = new Tag("div", true, true);    	public static final Tag DL = new Tag("dl", true, true);    	public static final Tag DT = new Tag("dt", true, true);    	public static final Tag EM = new Tag("em");    	public static final Tag FONT = new Tag("font");    	public static final Tag FORM = new Tag("form", true, false);	public static final Tag FRAME = new Tag("frame");	public static final Tag FRAMESET = new Tag("frameset");    	public static final Tag H1 = new Tag("h1", true, true);    	public static final Tag H2 = new Tag("h2", true, true);    	public static final Tag H3 = new Tag("h3", true, true);    	public static final Tag H4 = new Tag("h4", true, true);    	public static final Tag H5 = new Tag("h5", true, true);    	public static final Tag H6 = new Tag("h6", true, true);    	public static final Tag HEAD = new Tag("head", true, true);    	public static final Tag HR = new Tag("hr", true, false);    	public static final Tag HTML = new Tag("html", true, false);    	public static final Tag I = new Tag("i");    	public static final Tag IMG = new Tag("img");    	public static final Tag INPUT = new Tag("input");    	public static final Tag ISINDEX = new Tag("isindex", true, false);    	public static final Tag KBD = new Tag("kbd");    	public static final Tag LI = new Tag("li", true, true);    	public static final Tag LINK = new Tag("link");    	public static final Tag MAP = new Tag("map");    	public static final Tag MENU = new Tag("menu", true, true);    	public static final Tag META = new Tag("meta");	/*public*/ static final Tag NOBR = new Tag("nobr");	public static final Tag NOFRAMES = new Tag("noframes", true, true);    	public static final Tag OBJECT = new Tag("object");    	public static final Tag OL = new Tag("ol", true, true);    	public static final Tag OPTION = new Tag("option");    	public static final Tag P = new Tag("p", true, true);    	public static final Tag PARAM = new Tag("param");    	public static final Tag PRE = new Tag("pre", true, true);    	public static final Tag SAMP = new Tag("samp");    	public static final Tag SCRIPT = new Tag("script");    	public static final Tag SELECT = new Tag("select");    	public static final Tag SMALL = new Tag("small");    	public static final Tag SPAN = new Tag("span");    	public static final Tag STRIKE = new Tag("strike");    	public static final Tag S = new Tag("s");    	public static final Tag STRONG = new Tag("strong");    	public static final Tag STYLE = new Tag("style");    	public static final Tag SUB = new Tag("sub");    	public static final Tag SUP = new Tag("sup");    	public static final Tag TABLE = new Tag("table", false, true);    	public static final Tag TD = new Tag("td", true, true);    	public static final Tag TEXTAREA = new Tag("textarea");    	public static final Tag TH = new Tag("th", true, true);    	public static final Tag TITLE = new Tag("title", true, true);    	public static final Tag TR = new Tag("tr", false, true);    	public static final Tag TT = new Tag("tt");    	public static final Tag U = new Tag("u");    	public static final Tag UL = new Tag("ul", true, true);    	public static final Tag VAR = new Tag("var");	/**	 * All text content must be in a paragraph element.	 * If a paragraph didn't exist when content was	 * encountered, a paragraph is manufactured.	 * <p>	 * This is a tag synthesized by the HTML reader.	 * Since elements are identified by their tag type,	 * we create a some fake tag types to mark the elements	 * that were manufactured.	 */	public static final Tag IMPLIED = new Tag("p-implied");	/**	 * All text content is labeled with this tag.	 * <p>	 * This is a tag synthesized by the HTML reader.	 * Since elements are identified by their tag type,	 * we create a some fake tag types to mark the elements	 * that were manufactured.	 */	public static final Tag CONTENT = new Tag("content");	/**	 * All comments are labeled with this tag.	 * <p>	 * This is a tag synthesized by the HTML reader.	 * Since elements are identified by their tag type,	 * we create a some fake tag types to mark the elements	 * that were manufactured.	 */	public static final Tag COMMENT = new Tag("comment");	static final Tag allTags[]  = {	    A, ADDRESS, APPLET, AREA, B, BASE, BASEFONT, BIG,	    BLOCKQUOTE, BODY, BR, CAPTION, CENTER, CITE, CODE,	    DD, DFN, DIR, DIV, DL, DT, EM, FONT, FORM, FRAME,	    FRAMESET, H1, H2, H3, H4, H5, H6, HEAD, HR, HTML,	    I, IMG, INPUT, ISINDEX, KBD, LI, LINK, MAP, MENU,	    META, NOBR, NOFRAMES, OBJECT, OL, OPTION, P, PARAM,	    PRE, SAMP, SCRIPT, SELECT, SMALL, SPAN, STRIKE, S,	    STRONG, STYLE, SUB, SUP, TABLE, TD, TEXTAREA,	    TH, TITLE, TR, TT, U, UL, VAR		};	static {	    // Force HTMLs static initialize to be loaded.	    getTag("html");	}    }    // There is no unique instance of UnknownTag, so we allow it to be    // Serializable.    public static class UnknownTag extends Tag implements Serializable {	        /**         * Creates a new <code>UnknownTag</code> with the specified         * <code>id</code>.         * @param id the id of the new tag         */	public UnknownTag(String id) {	    super(id);	}        /**         * Returns the hash code which corresponds to the string         * for this tag.         */	public int hashCode() {	    return toString().hashCode();	}	/**	 * Compares this object to the specifed object.	 * The result is <code>true</code> if and only if the argument is not	 * <code>null</code> and is an <code>UnknownTag</code> object         * with the same name.         *	 * @param     obj   the object to compare this tag with	 * @return    <code>true</code> if the objects are equal;	 *            <code>false</code> otherwise	 */        public boolean equals(Object obj) {	    if (obj instanceof UnknownTag) {		return toString().equals(obj.toString());	    }	    return false;	}	private void writeObject(java.io.ObjectOutputStream s)	             throws IOException {	    s.defaultWriteObject();	    s.writeBoolean(blockTag);	    s.writeBoolean(breakTag);	    s.writeBoolean(unknown);	    s.writeObject(name);	}	private void readObject(ObjectInputStream s)	    throws ClassNotFoundException, IOException {	    s.defaultReadObject();	    blockTag = s.readBoolean();	    breakTag = s.readBoolean();	    unknown = s.readBoolean();	    name = (String)s.readObject();	}    }    /**     * Typesafe enumeration representing an HTML     * attribute.     */    public static final class Attribute {        /**         * Creates a new <code>Attribute</code> with the specified         * <code>id</code>.         *         * @param id the id of the new <code>Attribute</code>         */	Attribute(String id) {	    name = id;	}        /**         * Returns the string representation of this attribute.         * @return the string representation of this attribute         */	public String toString() {	    return name;	}	private String name;	public static final Attribute SIZE = new Attribute("size");	public static final Attribute COLOR = new Attribute("color");	public static final Attribute CLEAR = new Attribute("clear");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av不卡一区二区| 国产精品色在线| 日韩精品五月天| 日韩午夜激情av| 国产一区二区在线影院| 欧美国产欧美亚州国产日韩mv天天看完整| 国产成人在线视频免费播放| 国产精品毛片a∨一区二区三区| 色综合久久66| 日韩电影免费一区| 国产性天天综合网| 91视频观看免费| 日韩国产一区二| 久久久精品国产99久久精品芒果| 成人激情黄色小说| 日韩av中文字幕一区二区三区| 精品久久99ma| 91丝袜美腿高跟国产极品老师| 亚洲一区视频在线| 久久九九久久九九| 欧美性猛片aaaaaaa做受| 麻豆视频观看网址久久| 国产精品久久久久久妇女6080 | 青青草97国产精品免费观看| 久久综合九色欧美综合狠狠| 白白色 亚洲乱淫| 日韩中文字幕亚洲一区二区va在线| 精品国偷自产国产一区| 日本韩国欧美三级| 国产乱人伦精品一区二区在线观看| 国产精品免费av| 欧美一区二区网站| 日本韩国一区二区| 国产成人免费xxxxxxxx| 偷拍一区二区三区四区| 国产精品素人视频| 欧美一级久久久久久久大片| 91丨porny丨国产入口| 久久成人免费电影| 亚洲午夜久久久久久久久电影院| 国产三级精品视频| 日韩欧美123| 在线观看国产日韩| 在线免费观看日本欧美| 国内精品伊人久久久久av影院| 亚洲色图视频网站| 国产拍欧美日韩视频二区| 欧美日韩一卡二卡三卡| 91视视频在线观看入口直接观看www | 亚洲成人免费电影| 亚洲欧洲精品天堂一级| 久久精品日产第一区二区三区高清版| 欧美性受xxxx黑人xyx性爽| av网站一区二区三区| 国内精品免费在线观看| 另类小说一区二区三区| 午夜亚洲福利老司机| 亚洲一线二线三线视频| 亚洲啪啪综合av一区二区三区| 国产日韩欧美一区二区三区综合| 欧美一区二区三区视频| 91精品久久久久久久91蜜桃 | 69堂国产成人免费视频| 欧洲一区在线观看| 91麻豆.com| 91久久精品午夜一区二区| 99re这里都是精品| av中文字幕在线不卡| 福利电影一区二区三区| 成人午夜精品在线| 国产91精品在线观看| 国产iv一区二区三区| 国产91富婆露脸刺激对白| 国产成人在线网站| 成人性视频免费网站| 成人久久视频在线观看| 不卡av免费在线观看| 色婷婷久久久亚洲一区二区三区| 97精品国产露脸对白| 91欧美激情一区二区三区成人| a亚洲天堂av| 在线观看中文字幕不卡| 欧美日韩一区 二区 三区 久久精品| 在线观看一区二区视频| 欧美久久久久久久久| 日韩精品一区二区三区三区免费| 日韩精品中文字幕一区二区三区| 欧美大片在线观看| 中文字幕欧美日韩一区| 成人免费一区二区三区视频| 洋洋av久久久久久久一区| 天天影视涩香欲综合网| 日本不卡视频一二三区| 国产精品香蕉一区二区三区| 成人av资源站| 欧美在线一区二区三区| 91精品麻豆日日躁夜夜躁| 久久久久88色偷偷免费 | 免费观看日韩av| 国产综合色精品一区二区三区| 国产高清在线观看免费不卡| 97se亚洲国产综合自在线不卡| 91免费观看视频| 欧美精品xxxxbbbb| 欧美激情综合在线| 一区二区三区日韩欧美精品 | 国产偷国产偷亚洲高清人白洁| 国产精品对白交换视频| 日韩高清在线电影| 成人深夜在线观看| 欧美日韩激情在线| 国产性天天综合网| 亚洲成a人v欧美综合天堂| 国产一区二区三区免费在线观看| fc2成人免费人成在线观看播放| 欧美精品一卡二卡| 国产精品视频第一区| 日本aⅴ免费视频一区二区三区 | 在线日韩av片| 26uuu久久综合| 亚洲一区二区三区视频在线 | 国产永久精品大片wwwapp| 色婷婷av一区二区三区gif| 日韩精品一区在线| 亚洲老妇xxxxxx| 国产一区二区视频在线| 欧美日本一区二区三区四区| 中文字幕第一页久久| 日本免费新一区视频| 91免费观看国产| 久久久99免费| 麻豆视频观看网址久久| 欧洲一区二区av| 国产精品丝袜一区| 国内精品久久久久影院一蜜桃| 欧美在线小视频| 自拍偷拍欧美精品| 国产成人av在线影院| 日韩三级视频中文字幕| 香蕉影视欧美成人| 91性感美女视频| 日本一区二区三区高清不卡| 久久狠狠亚洲综合| 欧美肥妇bbw| 亚洲一区中文在线| 日本韩国精品在线| 综合亚洲深深色噜噜狠狠网站| 国产一区二区网址| 26uuu国产一区二区三区| 毛片av一区二区三区| 欧美高清视频www夜色资源网| 亚洲欧美精品午睡沙发| 不卡一区中文字幕| 欧美国产精品一区| 处破女av一区二区| 国产欧美日韩综合| 高清不卡一二三区| 国产精品视频yy9299一区| 99精品国产热久久91蜜凸| 欧美激情综合五月色丁香小说| 国产一区二区三区四| 久久久不卡影院| 国产91精品露脸国语对白| 中文字幕巨乱亚洲| 不卡的av网站| 亚洲免费观看在线观看| 色婷婷激情综合| 一区二区三区欧美在线观看| 欧洲一区在线观看| 亚洲gay无套男同| 91精品久久久久久久91蜜桃| 六月丁香婷婷色狠狠久久| 26uuu成人网一区二区三区| 国产一区二区三区综合| 国产精品视频观看| 91丨国产丨九色丨pron| 亚洲精品日韩综合观看成人91| 色天使色偷偷av一区二区| 亚洲午夜激情网站| 日韩精品影音先锋| 丰满亚洲少妇av| 一区二区在线观看免费视频播放| 欧美特级限制片免费在线观看| 亚州成人在线电影| 日韩女同互慰一区二区| 国产精品夜夜嗨| 亚洲人成网站色在线观看| 欧美美女直播网站| 奇米色777欧美一区二区| 久久亚区不卡日本| 99久久伊人久久99| 日韩成人dvd| 中文子幕无线码一区tr| 欧美中文字幕一区| 国产一区二区三区四区五区入口 | 国产一区二区剧情av在线| 国产精品素人一区二区| 欧美日韩精品二区第二页| 国产乱人伦精品一区二区在线观看 | 伊人夜夜躁av伊人久久|