?? tagelement.java
字號:
/* * @(#)TagElement.java 1.11 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.parser;import javax.swing.text.html.HTML;/** * A generic HTML TagElement class. The methods define how white * space is interpreted around the tag. * * @version 1.11, 12/19/03 * @author Sunita Mani */public class TagElement { Element elem; HTML.Tag htmlTag; boolean insertedByErrorRecovery; public TagElement ( Element elem ) { this(elem, false); } public TagElement (Element elem, boolean fictional) { this.elem = elem; htmlTag = HTML.getTag(elem.getName()); if (htmlTag == null) { htmlTag = new HTML.UnknownTag(elem.getName()); } insertedByErrorRecovery = fictional; } public boolean breaksFlow() { return htmlTag.breaksFlow(); } public boolean isPreformatted() { return htmlTag.isPreformatted(); } public Element getElement() { return elem; } public HTML.Tag getHTMLTag() { return htmlTag; } public boolean fictional() { return insertedByErrorRecovery; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -