| java.lang.Object org.enhydra.xml.NamedNodeMapImpl
All known Subclasses: org.enhydra.xml.HashMapNamedNodeMap,
Constructor Summary | |
public | NamedNodeMapImpl(List nodes) Constructs new NamedNodeMapImpl with the given list of nodes. |
NamedNodeMapImpl | public NamedNodeMapImpl(List nodes)(Code) | | Constructs new NamedNodeMapImpl with the given list of nodes.
Parameters: nodes - list of nodes. |
getLength | public int getLength()(Code) | | Returns the count of nodes.
the count of nodes. |
getNamedItem | public Node getNamedItem(String name)(Code) | | Returns the Node with the given name.
Parameters: name - the node name. the Node with the given name. |
item | public Node item(int index)(Code) | | Returns the Node with the given index.
Parameters: index - index of a node. the Node with the given index. |
removeNamedItemNS | public Node removeNamedItemNS(String namespaceURI, String localName)(Code) | | Equivalent to removeNamedItem(localName) .
Parameters: namespaceURI - is name space Parameters: localName - is string node |
setNamedItemNS | public Node setNamedItemNS(Node arg)(Code) | | Equivalent to setNamedItem(arg) .
Parameters: arg - is node node |
|
|