sdlip.xml.dom
Class NamedNodeMapImpl

java.lang.Object
  |
  +--sdlip.xml.dom.NamedNodeMapImpl

public class NamedNodeMapImpl
extends java.lang.Object
implements org.w3c.dom.NamedNodeMap


Field Summary
protected  NamedNodeMapImpl defaults
          Default nodes.
protected  int elementNode
          Element node index for fast named node map.
protected  java.util.Vector nodes
          Nodes.
protected  Document ownerDoc
          Owner document.
 
Constructor Summary
protected NamedNodeMapImpl(Document ownerDoc)
          Constructs a named node map.
 
Method Summary
 NamedNodeMapImpl cloneMap()
           
 int getLength()
           
 org.w3c.dom.Node getNamedItem(java.lang.String name)
           
 org.w3c.dom.Node item(int index)
           
 org.w3c.dom.Node removeNamedItem(java.lang.String name)
           
 org.w3c.dom.Node setNamedItem(org.w3c.dom.Node arg)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

nodes

protected java.util.Vector nodes
Nodes.

ownerDoc

protected Document ownerDoc
Owner document.

defaults

protected NamedNodeMapImpl defaults
Default nodes.

elementNode

protected int elementNode
Element node index for fast named node map.
Constructor Detail

NamedNodeMapImpl

protected NamedNodeMapImpl(Document ownerDoc)
Constructs a named node map.
Method Detail

getLength

public int getLength()
Specified by:
getLength in interface org.w3c.dom.NamedNodeMap

item

public org.w3c.dom.Node item(int index)
Specified by:
item in interface org.w3c.dom.NamedNodeMap

getNamedItem

public org.w3c.dom.Node getNamedItem(java.lang.String name)
Specified by:
getNamedItem in interface org.w3c.dom.NamedNodeMap

setNamedItem

public org.w3c.dom.Node setNamedItem(org.w3c.dom.Node arg)
                              throws org.w3c.dom.DOMException
Specified by:
setNamedItem in interface org.w3c.dom.NamedNodeMap

removeNamedItem

public org.w3c.dom.Node removeNamedItem(java.lang.String name)
                                 throws org.w3c.dom.DOMException
Specified by:
removeNamedItem in interface org.w3c.dom.NamedNodeMap

cloneMap

public NamedNodeMapImpl cloneMap()