- java.lang.Object
-
- javax.swing.text.AbstractDocument.AbstractElement
-
- javax.swing.text.AbstractDocument.LeafElement
-
- javax.swing.text.html.HTMLDocument.RunElement
-
- 实现的所有接口
-
Serializable
,AttributeSet
,Element
,MutableAttributeSet
,TreeNode
- Enclosing class:
- HTMLDocument
public class HTMLDocument.RunElement extends AbstractDocument.LeafElement
表示一组文本的元素,该文本具有分配给它的一组HTML字符级属性。- 另请参见:
- Serialized Form
-
-
嵌套类汇总
-
Nested classes/interfaces declared in interface javax.swing.text.AttributeSet
AttributeSet.CharacterAttribute, AttributeSet.ColorAttribute, AttributeSet.FontAttribute, AttributeSet.ParagraphAttribute
-
-
字段汇总
-
Fields declared in interface javax.swing.text.AttributeSet
NameAttribute, ResolveAttribute
-
-
构造方法摘要
构造方法 构造器 描述 RunElement(Element parent, AttributeSet a, int offs0, int offs1)
构造一个表示文档内容的元素(没有子元素)。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 String
getName()
获取元素的名称。AttributeSet
getResolveParent()
获取解析父级。-
声明方法的类 javax.swing.text.AbstractDocument.LeafElement
children, getAllowsChildren, getElement, getElementCount, getElementIndex, getEndOffset, getStartOffset, isLeaf, toString
-
声明方法的类 javax.swing.text.AbstractDocument.AbstractElement
addAttribute, addAttributes, containsAttribute, containsAttributes, copyAttributes, dump, getAttribute, getAttributeCount, getAttributeNames, getAttributes, getChildAt, getChildCount, getDocument, getIndex, getParent, getParentElement, isDefined, isEqual, removeAttribute, removeAttributes, removeAttributes, setResolveParent
-
-
-
-
构造方法详细信息
-
RunElement
public RunElement(Element parent, AttributeSet a, int offs0, int offs1)
构造一个表示文档内容的元素(没有子元素)。- 参数
-
parent
- 父元素 -
a
- 元素属性 -
offs0
- 起始偏移量(必须至少为0) -
offs1
- 结束偏移量(必须至少为offs0) - 从以下版本开始:
- 1.4
-
-
方法详细信息
-
getName
public String getName()
获取元素的名称。- Specified by:
-
getName
在界面Element
- 重写:
-
getName
在类AbstractDocument.LeafElement
- 结果
- 名称,如果没有则为null
-
getResolveParent
public AttributeSet getResolveParent()
获取解析父级。 HTML属性不是在模型级别继承的,因此我们重写此属性以返回null。- Specified by:
-
getResolveParent
在界面AttributeSet
- 重写:
-
getResolveParent
在AbstractDocument.AbstractElement
类 - 结果
- null,没有
- 另请参见:
-
AttributeSet.getResolveParent()
-
-