net.sf.saxon.dom
class DOMAttributeMap extends Object implements NamedNodeMap
Constructor Summary | |
---|---|
DOMAttributeMap(NodeInfo parent)
Construct an AttributeMap for a given element node |
Method Summary | |
---|---|
int | getLength()
Get number of attributes (DOM NamedNodeMap method). |
Node | getNamedItem(String name)
Get named attribute (DOM NamedNodeMap method) |
Node | getNamedItemNS(String uri, String localName)
Get named attribute (DOM NamedNodeMap method) |
Node | item(int index)
Get n'th attribute (DOM NamedNodeMap method).
|
Node | removeNamedItem(String name)
Remove named attribute (DOM NamedNodeMap method: always fails) |
Node | removeNamedItemNS(String uri, String localName)
Remove named attribute (DOM NamedNodeMap method: always fails) |
Node | setNamedItem(Node arg)
Set named attribute (DOM NamedNodeMap method: always fails) |
Node | setNamedItemNS(Node arg)
Set named attribute (DOM NamedNodeMap method: always fails) |