nu.xom:Attribute

Attribute:

机翻

Attribute copy():生成一份当前Attribute的拷贝,但是它没有依附任何Element


Node getChild(int position) :因为Attribute没有孩子,所以会抛出IndexOutOfBoundsException 
int getChildCount()         :因为Attribute没有孩子,这个方法调用会返回0


String getLocalName()    :返回当前Attribute不包括前缀的名字
String getQualifiedName():返回当前Attribute规范的名字,如果当前Attribute没有在一个命名空间中,则包括prefix


String getNamespacePrefix():返回当前Attribute命名空间的前缀,如果当前Attribute没有在一个命名空间中,则返回空字符串
String getNamespaceURI()   :返回当前Attribute命名空间的URI,如果当前Attribute没有在一个命名空间中,则返回空字符串



Attribute.Type getType()  :得到当前Attribute的DTD类型
String    getValue()      :返回当前Attribute的值


void    setLocalName(String localName)
void    setNamespace(String prefix, String URI)
void    setType(Attribute.Type type)
void    setValue(String value)


String    toXML():返回一个拥有很好的XML属性格式的字符串

 

上一篇:Nucleus 实时操作系统中断(下)


下一篇:nu.xom:Element