Uses of Class
jimm.twice.xml.dom.Node

Packages that use Node
jimm.twice.ice.xml Contains classes useful for building ICE payloads within SOAP envelopes. 
jimm.twice.xml.dom Contains a set of classes that provide a DOM-type way of building XML documents. 
 

Uses of Node in jimm.twice.ice.xml
 

Fields in jimm.twice.ice.xml declared as Node
protected  Node SoapEnvelope.headerNode
           
protected  Node SoapEnvelope.bodyNode
           
protected  Node Message.node
           
protected  Node Header.headerNode
           
 

Methods in jimm.twice.ice.xml that return Node
 Node SoapEnvelope.getHeaderNode()
           
 Node SoapEnvelope.getBodyNode()
           
 Node Message.getNode()
           
 Node Message.addChild(Node node)
          This convenience method adds node as a child of our node.
 Node Message.addChild(Element el)
          This convenience method adds el as a child of our node (first creating a node to contain el).
 

Methods in jimm.twice.ice.xml with parameters of type Node
 Node Message.addChild(Node node)
          This convenience method adds node as a child of our node.
 

Uses of Node in jimm.twice.xml.dom
 

Fields in jimm.twice.xml.dom declared as Node
protected  Node Node.parent
           
protected  Node Document.rootNode
           
 

Methods in jimm.twice.xml.dom that return Node
 Node Node.getParent()
           
 Node Node.addChild(Element element)
          Given an XML element, creates a node with this element, adds it to the list of children of this node, and returns the new node.
 Node Node.addChild(Node node)
          Adds node as a child of this node and return it.
 Node Node.findStartsWith(java.lang.String prefix)
          Performs a depth-first search to find the first node whose element's name starts with prefix.
 Node Document.getRootNode()
           
 Node Document.setRoot(Element element)
          Creates a new node using the specified element, makes that node the root of the document, and returns the node.
 

Methods in jimm.twice.xml.dom with parameters of type Node
 void Node.setParent(Node p)
           
 Node Node.addChild(Node node)
          Adds node as a child of this node and return it.
 void Node.removeChild(Node node)
           
 void Document.setRootNode(Node node)
           
 

Constructors in jimm.twice.xml.dom with parameters of type Node
Node(Element element, Node parent)
          Constructor.