|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.swing.text
类 StyleContext.SmallAttributeSet
java.lang.Object javax.swing.text.StyleContext.SmallAttributeSet
- 所有已实现的接口:
- AttributeSet
- 正在封闭类:
- StyleContext
-
public class StyleContext.SmallAttributeSet
- extends Object
- implements AttributeSet
此类可在数组中存储少量的属性。存储格式为键、值、键、值等等。集合的大小是数组的长度除以 2。默认情况下,这是以压缩可共享形式存储属性时所用的类。
嵌套类摘要 |
---|
从接口 javax.swing.text.AttributeSet 继承的嵌套类/接口 |
---|
AttributeSet.CharacterAttribute, AttributeSet.ColorAttribute, AttributeSet.FontAttribute, AttributeSet.ParagraphAttribute |
字段摘要 |
---|
从接口 javax.swing.text.AttributeSet 继承的字段 |
---|
NameAttribute, ResolveAttribute |
构造方法摘要 | |
---|---|
StyleContext.SmallAttributeSet(AttributeSet attrs) |
|
StyleContext.SmallAttributeSet(Object[] attributes) |
方法摘要 | |
---|---|
Object |
clone() 克隆属性集。 |
boolean |
containsAttribute(Object name, Object value) 检查给定的属性名称/值是否已定义。 |
boolean |
containsAttributes(AttributeSet attrs) 检查属性集是否包含了所有给定的属性。 |
AttributeSet |
copyAttributes() 复制属性集。 |
boolean |
equals(Object obj) 将此对象与指定对象比较。 |
Object |
getAttribute(Object key) 获取属性的值。 |
int |
getAttributeCount() 返回定义的属性数。 |
Enumeration<?> |
getAttributeNames() 获取所有属性的名称。 |
AttributeSet |
getResolveParent() 如果未重写,解析父级默认为是解析父元素。 |
int |
hashCode() 返回此属性集的一个哈希代码。 |
boolean |
isDefined(Object key) 检查给定属性是否已定义。 |
boolean |
isEqual(AttributeSet attr) 检查两个属性集是否相等。 |
String |
toString() 返回表示键/值对的字符串 |
从类 java.lang.Object 继承的方法 |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
StyleContext.SmallAttributeSet
public StyleContext.SmallAttributeSet(Object[] attributes)
StyleContext.SmallAttributeSet
public StyleContext.SmallAttributeSet(AttributeSet attrs)
方法详细信息 |
---|
toString
public String toString()
hashCode
public int hashCode()
- 返回此属性集的一个哈希代码。
-
- 返回:
- 此属性集的一个哈希代码值。
- 另请参见:
Object.equals(java.lang.Object)
,Hashtable
equals
public boolean equals(Object obj)
-
将此对象与指定对象比较。如果此对象是一个等同的属性集,则结果为
true
。 -
- 参数:
obj
- 要与之比较的对象。- 返回:
-
如果对象相同,则返回
true
;否则,返回false
。 - 另请参见:
Object.hashCode()
,Hashtable
clone
public Object clone()
getAttributeCount
public int getAttributeCount()
- 返回定义的属性数。
-
- 指定者:
-
接口
AttributeSet
中的getAttributeCount
-
- 返回:
- 属性数
- 另请参见:
AttributeSet.getAttributeCount()
isDefined
public boolean isDefined(Object key)
- 检查给定属性是否已定义。
-
- 指定者:
-
接口
AttributeSet
中的isDefined
-
- 参数:
key
- 属性键- 返回:
- 如果属性已定义,则返回 true
- 另请参见:
AttributeSet.isDefined(java.lang.Object)