Property |
Entry.createAttribute(java.lang.String name) |
This method creates a new Property object that represents an element's
attribute in terms of DOM concepts.
|
Property |
Entry.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName) |
This method creates new Property object that represents an element's
attribute in terms of XML concepts.
|
Property |
Attribute.getAttributeNode(java.lang.String name) |
Property |
Attribute.getAttributeNodeNS(java.lang.String namespaceURI,
java.lang.String localName) |
Property |
PropertyMap.getNamedItem(java.lang.String name) |
Looks up a Property using the specified qualified name.
|
Property |
PropertyMap.getNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName) |
Looks up a Property using the specified namespace URI and localName.
|
Property |
PropertyMap.item(int index) |
|
Property |
PropertyMap.removeNamedItem(java.lang.String name) |
Removes the Property referenced by the given qualified name
|
Property |
PropertyMap.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName) |
Removes the Property referenced by the given namespace URI and localName
|
Property |
PropertyMap.setNamedItem(org.w3c.dom.Node property) |
Adds a Property using its nodeName attribute.
|
Property |
PropertyMap.setNamedItemNS(org.w3c.dom.Node property) |
Adds a node using its namespaceURI and localName.
|