⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tag.java

📁 HTML解析器是一个Java库
💻 JAVA
📖 第 1 页 / 共 4 页
字号:

	void orphan() {
		// see isOrphaned() for details
		nextTag=NOT_CACHED;
	}

	boolean isOrphaned() {
		// Indicates whether this tag has been orphaned after being cleared from the cache by a full sequential parse after it was constructed.
		// Use nextTag as a flag to avoid using the extra memory allocation for such a rare issue.
		// This means that getNextTag() shouldn't set the nextTag field if this tag is orphaned.
		return source.wasFullSequentialParseCalled() && nextTag==NOT_CACHED;
	}

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String A=HTMLElementName.A;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String ABBR=HTMLElementName.ABBR;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String ACRONYM=HTMLElementName.ACRONYM;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String ADDRESS=HTMLElementName.ADDRESS;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String APPLET=HTMLElementName.APPLET;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String AREA=HTMLElementName.AREA;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String B=HTMLElementName.B;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BASE=HTMLElementName.BASE;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BASEFONT=HTMLElementName.BASEFONT;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BDO=HTMLElementName.BDO;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BIG=HTMLElementName.BIG;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BLOCKQUOTE=HTMLElementName.BLOCKQUOTE;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BODY=HTMLElementName.BODY;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BR=HTMLElementName.BR;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String BUTTON=HTMLElementName.BUTTON;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String CAPTION=HTMLElementName.CAPTION;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String CENTER=HTMLElementName.CENTER;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String CITE=HTMLElementName.CITE;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String CODE=HTMLElementName.CODE;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String COL=HTMLElementName.COL;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String COLGROUP=HTMLElementName.COLGROUP;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String DD=HTMLElementName.DD;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String DEL=HTMLElementName.DEL;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String DFN=HTMLElementName.DFN;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String DIR=HTMLElementName.DIR;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String DIV=HTMLElementName.DIV;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String DL=HTMLElementName.DL;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String DT=HTMLElementName.DT;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String EM=HTMLElementName.EM;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String FIELDSET=HTMLElementName.FIELDSET;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String FONT=HTMLElementName.FONT;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String FORM=HTMLElementName.FORM;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String FRAME=HTMLElementName.FRAME;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String FRAMESET=HTMLElementName.FRAMESET;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String H1=HTMLElementName.H1;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String H2=HTMLElementName.H2;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String H3=HTMLElementName.H3;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String H4=HTMLElementName.H4;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String H5=HTMLElementName.H5;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String H6=HTMLElementName.H6;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String HEAD=HTMLElementName.HEAD;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String HR=HTMLElementName.HR;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String HTML=HTMLElementName.HTML;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated
	public static final String I=HTMLElementName.I;

	/**
	 * Use of this inherited static field has been deprecated as of version 3.0.
	 * @deprecated  Use the static field directly from the HTMLElementName class instead.
	 */
	@Deprecated

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -