|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.swing.text
类 AbstractDocument.AbstractElement
java.lang.Object javax.swing.text.AbstractDocument.AbstractElement
- 所有已实现的接口:
- Serializable, AttributeSet, Element, MutableAttributeSet, TreeNode
- 正在封闭类:
- AbstractDocument
-
public abstract class AbstractDocument.AbstractElement
- extends Object
- implements Element, MutableAttributeSet, Serializable, TreeNode
实现元素的抽象部分。默认情况下,通过提供表示该元素当前属性集合的不可变部分的字段,元素支持这些属性。该元素本身可以实现 MutableAttributeSet,后者可以通过获取新的不可变集合来修改该集合。这些不可变集合是由与此文档相关的 AttributeContext 提供的。
警告:此类的序列化对象将与以后的 Swing 版本不兼容。当前的序列化支持适用于短期存储或运行相同 Swing 版本的应用程序之间的 RMI。从 1.4 版本开始,已在 java.beans
包中添加了支持所有 JavaBeansTM 长期存储的功能。请参见 XMLEncoder
。
嵌套类摘要 |
---|
从接口 javax.swing.text.AttributeSet 继承的嵌套类/接口 |
---|
AttributeSet.CharacterAttribute, AttributeSet.ColorAttribute, AttributeSet.FontAttribute, AttributeSet.ParagraphAttribute |
字段摘要 |
---|
从接口 javax.swing.text.AttributeSet 继承的字段 |
---|
NameAttribute, ResolveAttribute |
构造方法摘要 | |
---|---|
AbstractDocument.AbstractElement(Element parent, AttributeSet a) 创建新的 AbstractElement。 |
方法摘要 | |
---|---|
void |
addAttribute(Object name, Object value) 向该元素添加一个属性。 |
void |
addAttributes(AttributeSet attr) 向该元素添加一个属性集合。 |
abstract Enumeration |
children() 以 Enumeration 形式返回接收方的子级。 |
boolean |
containsAttribute(Object name, Object value) 检查是否定义了给定的属性名称/值。 |
boolean |
containsAttributes(AttributeSet attrs) 检查该元素是否包含所有的属性。 |
AttributeSet |
copyAttributes() 复制属性集合。 |
void |
dump(PrintStream psOut, int indentAmount) 转储该元素层次结构的调试表示形式。 |
abstract boolean |
getAllowsChildren() 如果接收方允许有子级,则返回 true。 |
Object |
getAttribute(Object attrName) 获取属性值。 |
int |
getAttributeCount() 获取所定义的属性数量。 |
Enumeration<?> |
getAttributeNames() 获取所有属性的名称。 |
AttributeSet |
getAttributes() 获取该元素的属性。 |
TreeNode |
getChildAt(int childIndex) 在索引 childIndex 处返回子级 TreeNode 。 |
int |
getChildCount() 返回接受方所包含的子级 TreeNode 的数量。 |
Document |
getDocument() 获得基础模型。 |
abstract Element |
getElement(int index) 获取子元素。 |
abstract int |
getElementCount() 获取该元素子级的数量。 |
abstract int |
getElementIndex(int offset) 获取最接近给定模型偏移量的子元素索引。 |
abstract int |
getEndOffset() 获取该元素在此模型中的终止偏移量。 |
int |
getIndex(TreeNode node) 返回接收方子级中 node 的索引。 |
String |
getName() 获取该元素的名称。 |
TreeNode |
getParent() 返回接收方的父级 TreeNode 。 |
Element |
getParentElement() 获取该元素的父级。 |
AttributeSet |
getResolveParent() 获取要解析的父级。 |
abstract int |
getStartOffset() 获取该元素在此模型中的起始偏移量。 |
boolean |
isDefined(Object attrName) 检查是否定义了给定的属性。 |
boolean |
isEqual(AttributeSet attr) 检查两个属性集合是否相等。 |
abstract boolean |
isLeaf() 检查该元素是否为叶元素。 |
void |
removeAttribute(Object name) 从该集合中移除一个属性。 |
void |
removeAttributes(AttributeSet attrs) 移除该元素的属性集合。 |
void |
removeAttributes(Enumeration<?> names) 移除该元素的属性集合。 |
void |
setResolveParent(AttributeSet parent) 设置要解析的父级。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
AbstractDocument.AbstractElement
public AbstractDocument.AbstractElement(Element parent, AttributeSet a)
-
创建新的 AbstractElement。
- 参数:
parent
- 父元素a
- 该元素的属性
方法详细信息 |
---|
dump
public void dump(PrintStream psOut, int indentAmount)
- 转储该元素层次结构的调试表示形式。
-
-
- 参数:
psOut
- 输出流indentAmount
- 缩进级别 >= 0
getAttributeCount
public int getAttributeCount()
- 获取所定义的属性数量。
-
- 指定者:
-
接口
AttributeSet
中的getAttributeCount
-
- 返回:
- 属性数量 >= 0
- 另请参见:
AttributeSet.getAttributeCount()
isDefined
public boolean isDefined(Object attrName)
- 检查是否定义了给定的属性。
-
- 指定者:
-
接口
AttributeSet
中的isDefined
-
- 参数:
attrName
- 非 null 属性的名称- 返回:
- 如果定义了属性,则返回 true
- 另请参见:
AttributeSet.isDefined(java.lang.Object)
isEqual
public boolean isEqual(AttributeSet attr)
- 检查两个属性集合是否相等。
-
- 指定者:
-
接口
AttributeSet
中的isEqual
-
- 参数:
attr
- 要检查的属性集合- 返回:
- 如果相同,则返回 true
- 另请参见:
AttributeSet.isEqual(javax.swing.text.AttributeSet)
copyAttributes
public AttributeSet copyAttributes()
- 复制属性集合。
-
- 指定者:
-
接口
AttributeSet
中的copyAttributes
-
- 返回:
- 副本
- 另请参见:
AttributeSet.copyAttributes()
getAttribute
public Object getAttribute(Object attrName)
- 获取属性值。
-
- 指定者:
-
接口
AttributeSet
中的getAttribute
-
- 参数:
attrName
- 非 null 属性名称- 返回:
- 属性值
- 另请参见:
AttributeSet.getAttribute(java.lang.Object)
getAttributeNames
public Enumeration<?> getAttributeNames()
- 获取所有属性的名称。
-
- 指定者:
-
接口
AttributeSet
中的getAttributeNames
-
- 返回:
- 枚举形式的属性名称
- 另请参见:
AttributeSet.getAttributeNames()