| java.lang.Object net.sf.saxon.dom.DOMAttributeMap
DOMAttributeMap | class DOMAttributeMap implements NamedNodeMap(Code) | | Implementation of DOM NamedNodeMap used to represent the attributes of an element, for use when
Saxon element and attribute nodes are accessed using the DOM API.
|
DOMAttributeMap | public DOMAttributeMap(NodeInfo parent)(Code) | | Construct an AttributeMap for a given element node
|
getLength | public int getLength()(Code) | | Get number of attributes (DOM NamedNodeMap method).
|
getNamedItem | public Node getNamedItem(String name)(Code) | | Get named attribute (DOM NamedNodeMap method)
|
getNamedItemNS | public Node getNamedItemNS(String uri, String localName)(Code) | | Get named attribute (DOM NamedNodeMap method)
|
item | public Node item(int index)(Code) | | Get n'th attribute (DOM NamedNodeMap method).
Namespace declarations are not retrieved.
|
removeNamedItem | public Node removeNamedItem(String name) throws DOMException(Code) | | Remove named attribute (DOM NamedNodeMap method: always fails)
|
setNamedItem | public Node setNamedItem(Node arg) throws DOMException(Code) | | Set named attribute (DOM NamedNodeMap method: always fails)
|
setNamedItemNS | public Node setNamedItemNS(Node arg) throws DOMException(Code) | | Set named attribute (DOM NamedNodeMap method: always fails)
|
|
|