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

Packages that use Element
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 Element in jimm.twice.ice.xml
 

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

Uses of Element in jimm.twice.xml.dom
 

Subclasses of Element in jimm.twice.xml.dom
 class Doctype
          This simple doctype does not support any entities because we don't use any in ICE XML documents.
 class InlineFile
          This element writes the contents of a file without reading the contents into memory all at once.
 class NamedAttributes
          An abstract superclass for entities with names and attributes.
 class NamedElement
          An abstract superclass for entities with names.
 class ProcessingInstruction
          Used for all processing instructions except '' (for that use XMLDecl).
 class Tag
          An XML tag with attributes.
 class Text
          This rather stupid text element always encloses its output within a CDATA tag.
 class XMLDecl
          Only used for the '' processing instruction.
 

Fields in jimm.twice.xml.dom declared as Element
protected  Element Node.element
           
 

Methods in jimm.twice.xml.dom that return Element
 Element Node.getElement()
           
 

Methods in jimm.twice.xml.dom with parameters of type Element
 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.
 void Document.addToProlog(Element element)
          Add element to prolog.
 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.
 

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