|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object org.xml.sax.helpers.AttributesImpl org.xml.sax.ext.Attributes2Impl
public class Attributes2Impl
用于附加的 Attributes 信息的、实现 Attributes2
接口的 SAX2 扩展帮助器。
此模块(包括源代码和文档)在公共域中,同时 没有担保。
这不是仅核心 SAX2 分发的一部分。
每个属性的指定的 标志将总为 true,除非使用副本构造方法或 setSpecified(int, boolean)
将它设置为 false。类似地,每个属性的声明的 标志将总为 false,默认的属性(指定为 false)、非 CDATA 属性或使用 setDeclared(int, boolean)
将其设置为 true 时除外。如果手工更改属性的类型,则为了相符可能需要修改其声明的 标志。
构造方法摘要 | |
---|---|
Attributes2Impl() 构造一个新的空 Attributes2Impl 对象。 |
|
Attributes2Impl(Attributes atts) 复制现有属性或 Attributes2 对象。 |
方法摘要 | |
---|---|
void |
addAttribute(String uri, String localName, String qName, String type, String value) 将属性添回到列表的末尾,将其“指定的”标志设置为 true。 |
boolean |
isDeclared(int index) 返回属性的“声明的”标志的当前值。 |
boolean |
isDeclared(String qName) 返回属性的“声明的”标志的当前值。 |
boolean |
isDeclared(String uri, String localName) 返回属性的“声明的”标志的当前值。 |
boolean |
isSpecified(int index) 返回属性的“指定的”标志的当前值。 |
boolean |
isSpecified(String qName) 返回属性的“指定的”标志的当前值。 |
boolean |
isSpecified(String uri, String localName) 返回属性的“指定的”标志的当前值。 |
void |
removeAttribute(int index) 从列表移除属性。 |
void |
setAttributes(Attributes atts) 复制整个属性对象。 |
void |
setDeclared(int index, boolean value) 将值分配给特定属性的“声明的”标志。 |
void |
setSpecified(int index, boolean value) 将值分配给特定属性的“指定的”标志。 |
从类 org.xml.sax.helpers.AttributesImpl 继承的方法 |
---|
clear, getIndex, getIndex, getLength, getLocalName, getQName, getType, getType, getType, getURI, getValue, getValue, getValue, setAttribute, setLocalName, setQName, setType, setURI, setValue |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
从接口 org.xml.sax.Attributes 继承的方法 |
---|
getIndex, getIndex, getLength, getLocalName, getQName, getType, getType, getType, getURI, getValue, getValue, getValue |
构造方法详细信息 |
---|
public Attributes2Impl()
public Attributes2Impl(Attributes atts)
在 startElement
事件中,此构造方法特别有用。
atts
- 现有 Attributes 对象。
方法详细信息 |
---|
public boolean isDeclared(int index)
Attributes2
中的
isDeclared
index
- 属性索引(从零开始)。
public boolean isDeclared(String uri, String localName)
Attributes2
中的
isDeclared
uri
- 名称空间 URI,如果该名称没有名称空间 URI,则为空字符串。
localName
- 属性的本地名称。
public boolean isDeclared(String qName)
Attributes2
中的
isDeclared
qName
- XML 限定(加前缀的)名称。
public boolean isSpecified(int index)
Attributes2
中的
isSpecified
index
- 属性索引(从零开始)。
ArrayIndexOutOfBoundsException
- 当提供的索引不标识属性时。
public boolean isSpecified(String uri, String localName)
Attributes2
中的
isSpecified
uri
- 名称空间 URI,如果该名称没有名称空间 URI,则为空字符串。
localName
- 属性的本地名称。
IllegalArgumentException
- 当提供的名称不标识属性时。
public boolean isSpecified(String qName)
Attributes2
中的
isSpecified
qName
- XML 限定(加前缀的)名称。
IllegalArgumentException
- 当提供的名称不标识属性时。
public void setAttributes(Attributes atts)
AttributesImpl
中的
setAttributes
atts
- 要复制的属性。
AttributesImpl.setAttributes(org.xml.sax.Attributes)
public void addAttribute(String uri, String localName, String qName, String type, String value)
setSpecified(int, boolean)
。
除非属性类型 是 CDATA,才按照 DTD 中声明的那样标记此属性。要将该标志值设置为 true,使用 setDeclared(int, boolean)
。
AttributesImpl
中的
addAttribute
uri
- 名称空间 URI,如果没有可用的,或不是正在执行名称空间处理,则为空字符串。
localName
- 本地名称,如果不是正在执行名称空间处理,则为空字符串。
qName
- 限定(加前缀的)名称,如果限定名称不可用,则为空字符串。
type
- 字符串形式的属性类型。
value
- 属性值。
AttributesImpl.addAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
public void removeAttribute(int index)
AttributesImpl
复制的描述
AttributesImpl
中的
removeAttribute
index
- 属性的索引(从零开始)。
public void setDeclared(int index, boolean value)
index
- 属性的索引(从零开始)。
value
- 需要的标志值。
ArrayIndexOutOfBoundsException
- 当提供的索引不标识属性时。
AttributesImpl.setType(int, java.lang.String)
public void setSpecified(int index, boolean value)
index
- 属性的索引(从零开始)。
value
- 需要的标志值。
ArrayIndexOutOfBoundsException
- 当提供的索引不标识属性时。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。