|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--org.apache.batik.dom.AbstractElement.NamedNodeHashMap
An implementation of the NamedNodeMap.
| Field Summary | |
protected int |
count
The number of entries |
protected static int |
INITIAL_CAPACITY
The initial capacity |
protected AbstractElement.Entry[] |
table
The underlying array |
| Constructor Summary | |
AbstractElement.NamedNodeHashMap()
Creates a new NamedNodeHashMap object. |
|
| Method Summary | |
protected void |
checkNode(Node arg)
Checks the validity of a node to add. |
protected Node |
get(java.lang.String ns,
java.lang.String nm)
Gets the value of a variable |
int |
getLength()
DOM: Implements NamedNodeMap.getLength(). |
Node |
getNamedItem(java.lang.String name)
DOM: Implements NamedNodeMap.getNamedItem(String). |
Node |
getNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
DOM: Implements NamedNodeMap.getNamedItemNS(String,String). |
protected int |
hashCode(java.lang.String ns,
java.lang.String nm)
Computes a hash code corresponding to the given strings. |
Node |
item(int index)
DOM: Implements NamedNodeMap.item(int). |
protected Node |
put(java.lang.String ns,
java.lang.String nm,
Node value)
Sets a new value for the given variable |
protected void |
rehash()
Rehash the table |
protected Node |
remove(java.lang.String ns,
java.lang.String nm)
Removes an entry from the table. |
Node |
removeNamedItem(java.lang.String name)
DOM: Implements NamedNodeMap.removeNamedItem(String). |
Node |
removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
DOM: Implements NamedNodeMap.removeNamedItemNS(String,String). |
Node |
setNamedItem(Node arg)
DOM: Implements NamedNodeMap.setNamedItem(Node). |
Node |
setNamedItem(java.lang.String ns,
java.lang.String name,
Node arg)
Adds a node to the map. |
Node |
setNamedItemNS(Node arg)
DOM: Implements NamedNodeMap.setNamedItemNS(Node). |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected static final int INITIAL_CAPACITY
protected AbstractElement.Entry[] table
protected int count
| Constructor Detail |
public AbstractElement.NamedNodeHashMap()
| Method Detail |
public Node getNamedItem(java.lang.String name)
NamedNodeMap.getNamedItem(String).getNamedItem in interface NamedNodeMaporg.w3c.dom.NamedNodeMapnameThe - nodeName of a node to retrieve.Node (of any type) with the specified
nodeName, or null if it does not identify
any node in this map.
public Node setNamedItem(Node arg)
throws DOMException
NamedNodeMap.setNamedItem(Node).setNamedItem in interface NamedNodeMaporg.w3c.dom.NamedNodeMapargA - node to store in this map. The node will later be
accessible using the value of its nodeName attribute.Node replaces an existing node the
replaced Node is returned, otherwise null
is returned.DOMException - WRONG_DOCUMENT_ERR: Raised if arg was created from a
different document than the one that created this map.
arg is an
Attr that is already an attribute of another
Element object. The DOM user must explicitly clone
Attr nodes to re-use them in other elements.
public Node removeNamedItem(java.lang.String name)
throws DOMException
NamedNodeMap.removeNamedItem(String).removeNamedItem in interface NamedNodeMaporg.w3c.dom.NamedNodeMapnameThe - nodeName of the node to remove.DOMException - NOT_FOUND_ERR: Raised if there is no node named name in
this map.
public Node item(int index)
NamedNodeMap.item(int).item in interface NamedNodeMaporg.w3c.dom.NamedNodeMapindexIndex - into this map.indexth position in the map, or
null if that is not a valid index.public int getLength()
NamedNodeMap.getLength().getLength in interface NamedNodeMap
public Node getNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
NamedNodeMap.getNamedItemNS(String,String).getNamedItemNS in interface NamedNodeMaporg.w3c.dom.NamedNodeMapnamespaceURIThe - namespace URI of the node to retrieve.localNameThe - local name of the node to retrieve.Node (of any type) with the specified local
name and namespace URI, or null if they do not
identify any node in this map.
public Node setNamedItemNS(Node arg)
throws DOMException
NamedNodeMap.setNamedItemNS(Node).setNamedItemNS in interface NamedNodeMaporg.w3c.dom.NamedNodeMapargA - node to store in this map. The node will later be
accessible using the value of its namespaceURI and
localName attributes.Node replaces an existing node the
replaced Node is returned, otherwise null
is returned.DOMException - WRONG_DOCUMENT_ERR: Raised if arg was created from a
different document than the one that created this map.
arg is an
Attr that is already an attribute of another
Element object. The DOM user must explicitly clone
Attr nodes to re-use them in other elements.
public Node removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
throws DOMException
NamedNodeMap.removeNamedItemNS(String,String).removeNamedItemNS in interface NamedNodeMaporg.w3c.dom.NamedNodeMapnamespaceURIThe - namespace URI of the node to remove.localNameThe - local name of the node to remove.DOMException - NOT_FOUND_ERR: Raised if there is no node with the specified
namespaceURI and localName in this map.
public Node setNamedItem(java.lang.String ns,
java.lang.String name,
Node arg)
throws DOMException
protected void checkNode(Node arg)
protected Node get(java.lang.String ns,
java.lang.String nm)
protected Node put(java.lang.String ns,
java.lang.String nm,
Node value)
protected Node remove(java.lang.String ns,
java.lang.String nm)
protected void rehash()
protected int hashCode(java.lang.String ns,
java.lang.String nm)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||