|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object javax.swing.text.SimpleAttributeSet
public class SimpleAttributeSet
使用哈希表的 MutableAttributeSet 的直接实现。
警告:此类的已序列化对象与以后的 Swing 版本不兼容。当前序列化支持适用于短期存储或运行相同 Swing 版本的应用程序之间的 RMI。从 1.4 版本开始,已在 java.beans
包中添加了支持所有 JavaBeansTM 长期存储的功能。请参见 XMLEncoder
。
嵌套类摘要 |
---|
从接口 javax.swing.text.AttributeSet 继承的嵌套类/接口 |
---|
AttributeSet.CharacterAttribute, AttributeSet.ColorAttribute, AttributeSet.FontAttribute, AttributeSet.ParagraphAttribute |
字段摘要 | |
---|---|
static AttributeSet |
EMPTY 空的属性集。 |
从接口 javax.swing.text.AttributeSet 继承的字段 |
---|
NameAttribute, ResolveAttribute |
构造方法摘要 | |
---|---|
SimpleAttributeSet() 创建新属性集。 |
|
SimpleAttributeSet(AttributeSet source) 根据提供的属性集创建新属性集。 |
方法摘要 | |
---|---|
void |
addAttribute(Object name, Object value) 向列表添加属性。 |
void |
addAttributes(AttributeSet attributes) 向列表添加属性集。 |
Object |
clone() 复制属性集。 |
boolean |
containsAttribute(Object name, Object value) 检查属性列表中是否包含了指定的属性名称/值对。 |
boolean |
containsAttributes(AttributeSet attributes) 确定属性列表中是否包含所有指定的名称/值对。 |
AttributeSet |
copyAttributes() 创建属性的副本。 |
boolean |
equals(Object obj) 将该对象与指定对象比较。 |
Object |
getAttribute(Object name) 获取属性的值。 |
int |
getAttributeCount() 获取属性数目的总数。 |
Enumeration<?> |
getAttributeNames() 获取集合中的属性名称。 |
AttributeSet |
getResolveParent() 获取正解析的父级。 |
int |
hashCode() 返回此属性集的哈希代码。 |
boolean |
isDefined(Object attrName) 告知是否定义了给定的属性。 |
boolean |
isEmpty() 检查属性集是否为空。 |
boolean |
isEqual(AttributeSet attr) 比较两个属性集。 |
void |
removeAttribute(Object name) 从列表中移除属性。 |
void |
removeAttributes(AttributeSet attributes) 从列表中移除属性集。 |
void |
removeAttributes(Enumeration<?> names) 从列表中移除属性集。 |
void |
setResolveParent(AttributeSet parent) 设置解析的父级。 |
String |
toString() 将属性集转换为 String。 |
从类 java.lang.Object 继承的方法 |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
字段详细信息 |
---|
public static final AttributeSet EMPTY
构造方法详细信息 |
---|
public SimpleAttributeSet()
public SimpleAttributeSet(AttributeSet source)
source
- 属性集
方法详细信息 |
---|
public boolean isEmpty()
public int getAttributeCount()
AttributeSet
中的
getAttributeCount
public boolean isDefined(Object attrName)
AttributeSet
中的
isDefined
attrName
- 属性名
public boolean isEqual(AttributeSet attr)
AttributeSet
中的
isEqual
attr
- 第二个属性集
public AttributeSet copyAttributes()
AttributeSet
中的
copyAttributes
public Enumeration<?> getAttributeNames()
AttributeSet
中的
getAttributeNames
Enumeration
形式的名称
public Object getAttribute(Object name)
AttributeSet
中的
getAttribute
name
- 属性名称
public boolean containsAttribute(Object name, Object value)
AttributeSet
中的
containsAttribute
name
- 名称
value
- 值
public boolean containsAttributes(AttributeSet attributes)
AttributeSet
中的
containsAttributes
attributes
- 属性列表
public void addAttribute(Object name, Object value)
MutableAttributeSet
中的
addAttribute
name
- 属性名称
value
- 属性值
public void addAttributes(AttributeSet attributes)
MutableAttributeSet
中的
addAttributes
attributes
- 要添加的属性集
public void removeAttribute(Object name)
MutableAttributeSet
中的
removeAttribute
name
- 属性名
public void removeAttributes(Enumeration<?> names)
MutableAttributeSet
中的
removeAttributes
names
- 要移除的属性集
public void removeAttributes(AttributeSet attributes)
MutableAttributeSet
中的
removeAttributes
attributes
- 要移除的属性集
public AttributeSet getResolveParent()
AttributeSet
中的
getResolveParent
public void setResolveParent(AttributeSet parent)
MutableAttributeSet
中的
setResolveParent
parent
- 父级
public Object clone()
Object
中的
clone
Cloneable
public int hashCode()
Object
中的
hashCode
Object.equals(java.lang.Object)
,
Hashtable
public boolean equals(Object obj)
true
。
Object
中的
equals
obj
- 要与此属性集比较的对象
true
;否则返回
false
。
Object.hashCode()
,
Hashtable
public String toString()
Object
中的
toString
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。