Uses of Interface
org.w3c.dom.Element

Packages that use Element
org.apache.html.dom   
org.apache.xerces.dom   
org.apache.xerces.domx   
org.apache.xerces.parsers   
org.apache.xerces.validators.schema   
org.apache.xml.serialize   
org.w3c.dom   
org.w3c.dom.html   
 

Uses of Element in org.apache.html.dom
 

Classes in org.apache.html.dom that implement Element
 class HTMLAnchorElementImpl
           
 class HTMLAppletElementImpl
           
 class HTMLAreaElementImpl
           
 class HTMLBaseElementImpl
           
 class HTMLBaseFontElementImpl
           
 class HTMLBodyElementImpl
           
 class HTMLBRElementImpl
           
 class HTMLButtonElementImpl
           
 class HTMLDirectoryElementImpl
           
 class HTMLDivElementImpl
           
 class HTMLDListElementImpl
           
 class HTMLElementImpl
          Implements an HTML-specific element, an Element that will only appear inside HTML documents.
 class HTMLFieldSetElementImpl
           
 class HTMLFontElementImpl
           
 class HTMLFormElementImpl
           
 class HTMLFrameElementImpl
           
 class HTMLFrameSetElementImpl
           
 class HTMLHeadElementImpl
           
 class HTMLHeadingElementImpl
           
 class HTMLHRElementImpl
           
 class HTMLHtmlElementImpl
           
 class HTMLIFrameElementImpl
           
 class HTMLImageElementImpl
           
 class HTMLInputElementImpl
           
 class HTMLIsIndexElementImpl
           
 class HTMLLabelElementImpl
           
 class HTMLLegendElementImpl
           
 class HTMLLIElementImpl
           
 class HTMLLinkElementImpl
           
 class HTMLMapElementImpl
           
 class HTMLMenuElementImpl
           
 class HTMLMetaElementImpl
           
 class HTMLModElementImpl
           
 class HTMLObjectElementImpl
           
 class HTMLOListElementImpl
           
 class HTMLOptGroupElementImpl
           
 class HTMLOptionElementImpl
           
 class HTMLParagraphElementImpl
           
 class HTMLParamElementImpl
           
 class HTMLPreElementImpl
           
 class HTMLQuoteElementImpl
           
 class HTMLScriptElementImpl
           
 class HTMLSelectElementImpl
           
 class HTMLStyleElementImpl
           
 class HTMLTableCaptionElementImpl
           
 class HTMLTableCellElementImpl
           
 class HTMLTableColElementImpl
           
 class HTMLTableElementImpl
           
 class HTMLTableRowElementImpl
           
 class HTMLTableSectionElementImpl
           
 class HTMLTextAreaElementImpl
           
 class HTMLTitleElementImpl
           
 class HTMLUListElementImpl
           
 

Methods in org.apache.html.dom that return Element
 Element HTMLDocumentImpl.getDocumentElement()
           
 Element HTMLDocumentImpl.getElementById(java.lang.String elementId)
           
 Element HTMLDocumentImpl.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
           
 Element HTMLDocumentImpl.createElement(java.lang.String tagName)
           
 

Uses of Element in org.apache.xerces.dom
 

Classes in org.apache.xerces.dom that implement Element
 class DeferredElementImpl
          Elements represent most of the "markup" and structure of the document.
 class DeferredElementNSImpl
          DeferredElementNSImpl is to ElementNSImpl, what DeferredElementImpl is to ElementImpl.
 class ElementImpl
          Elements represent most of the "markup" and structure of the document.
 class ElementNSImpl
          ElementNSImpl inherits from ElementImpl and adds namespace support.
 

Methods in org.apache.xerces.dom that return Element
 Element AttrImpl.getElement()
          Deprecated. Previous working draft of DOM Level 2. New method is getOwnerElement().
 Element AttrImpl.getOwnerElement()
          Returns the element node that this attribute is associated with, or null if the attribute has not been added to an element.
 Element DocumentImpl.createElement(java.lang.String tagName)
          Factory method; creates an Element having this Document as its OwnerDoc.
 Element DocumentImpl.getDocumentElement()
          Convenience method, allowing direct access to the child node which is considered the root of the actual document content.
 Element DocumentImpl.getElementById(java.lang.String elementId)
          Introduced in DOM Level 2 Returns the Element whose ID is given by elementId.
 Element DocumentImpl.getIdentifier(java.lang.String idName)
          Returns a previously registered element with the specified identifier name, or null if no element is registered.
 Element DocumentImpl.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Introduced in DOM Level 2.
 

Methods in org.apache.xerces.dom with parameters of type Element
 void DocumentImpl.putIdentifier(java.lang.String idName, Element element)
          Registers an identifier name with a specified element node.
 

Uses of Element in org.apache.xerces.domx
 

Methods in org.apache.xerces.domx with parameters of type Element
 void XGrammarWriter.printComment(Element comment)
          Prints a comment.
 void XGrammarWriter.printElement(Element element)
          Prints the given element.
 void XGrammarWriter.printOpenElement(Element element)
          Prints an open element.
 void XGrammarWriter.printEmptyElement(Element element)
          Prints an empty element.
 void XGrammarWriter.printCloseElement(Element element)
          Prints a close element.
 void XGrammarWriter.printElementDecl(Element element)
          Prints a DTD element declaration.
 void XGrammarWriter.printElementDeclContentModel(Element archetype)
          Prints a DTD element declaration content model.
 void XGrammarWriter.printElementDeclContentModelMixed(Element archetype)
          Prints a DTD element declaration mixed content model.
 void XGrammarWriter.printElementDeclContentModelChildren(Element archetype)
          Prints a DTD element declaration children content model.
 void XGrammarWriter.printAttributeDecl(java.lang.String elemName, Element attribute)
          Prints a DTD attribute declaration.
 void XGrammarWriter.printEntityDecl(Element entity)
          Prints a DTD entity declaration.
 void XGrammarWriter.printNotationDecl(Element notation)
          Prints a DTD notation declaration.
protected  void XGrammarWriter.printOpenElement(Element element, boolean empty)
          Prints an open or empty element.
protected  boolean XGrammarWriter.isEmpty(Element element)
          Returns true if the element is "empty".
protected  boolean XGrammarWriter.containsMoreThanOneChildOfType(Element node, java.lang.String[] names)
          Returns true if the specified element has more than one child with any of the given names.
 

Uses of Element in org.apache.xerces.parsers
 

Methods in org.apache.xerces.parsers that return Element
protected  Element DOMParser.getCurrentElementNode()
          Returns the current element node.
 

Uses of Element in org.apache.xerces.validators.schema
 

Methods in org.apache.xerces.validators.schema that return Element
static Element XUtil.getFirstChildElement(Node parent)
          Finds and returns the first child element node.
static Element XUtil.getNextSiblingElement(Node node)
          Finds and returns the next sibling element node.
static Element XUtil.getFirstChildElement(Node parent, java.lang.String elemName)
          Finds and returns the first child node with the given name.
static Element XUtil.getNextSiblingElement(Node node, java.lang.String elemName)
          Finds and returns the next sibling node with the given name.
static Element XUtil.getFirstChildElement(Node parent, java.lang.String[] elemNames)
          Finds and returns the first child node with the given name.
static Element XUtil.getNextSiblingElement(Node node, java.lang.String[] elemNames)
          Finds and returns the next sibling node with the given name.
static Element XUtil.getFirstChildElement(Node parent, java.lang.String elemName, java.lang.String attrName, java.lang.String attrValue)
          Finds and returns the first child node with the given name and attribute name, value pair.
static Element XUtil.getNextSiblingElement(Node node, java.lang.String elemName, java.lang.String attrName, java.lang.String attrValue)
          Finds and returns the next sibling node with the given name and attribute name, value pair.
 

Methods in org.apache.xerces.validators.schema with parameters of type Element
 int XSchemaValidator.traverseDatatypeDecl(Element datatypeDecl)
           
 

Uses of Element in org.apache.xml.serialize
 

Methods in org.apache.xml.serialize with parameters of type Element
 void BaseMarkupSerializer.serialize(Element elem)
          Serializes the DOM element using the previously specified writer and output format.
protected abstract  void BaseMarkupSerializer.serializeElement(Element elem)
          Called to serializee the DOM element.
protected  void HTMLSerializer.serializeElement(Element elem)
          Called to serialize a DOM element.
 void DOMSerializer.serialize(Element elem)
          Serialized the DOM element.
protected  void TextSerializer.serializeElement(Element elem)
          Called to serialize a DOM element.
protected  void XMLSerializer.serializeElement(Element elem)
          Called to serialize a DOM element.
 

Uses of Element in org.w3c.dom
 

Methods in org.w3c.dom that return Element
 Element Attr.getOwnerElement()
          The Element node this attribute is attached to or null if this attribute is not in use.
 Element Document.getDocumentElement()
          This is a convenience attribute that allows direct access to the child node that is the root element of the document.
 Element Document.createElement(java.lang.String tagName)
          Creates an element of the type specified.
 Element Document.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an element of the given qualified name and namespace URI.
 Element Document.getElementById(java.lang.String elementId)
          Returns the Element whose ID is given by elementId .
 

Uses of Element in org.w3c.dom.html
 

Subinterfaces of Element in org.w3c.dom.html
 interface HTMLAnchorElement
          The anchor element.
 interface HTMLAppletElement
          An embedded Java applet.
 interface HTMLAreaElement
          Client-side image map area definition.
 interface HTMLBaseElement
          Document base URI.
 interface HTMLBaseFontElement
          Base font.
 interface HTMLBodyElement
          The HTML document body.
 interface HTMLBRElement
          Force a line break.
 interface HTMLButtonElement
          Push button.
 interface HTMLDirectoryElement
          Directory list.
 interface HTMLDivElement
          Generic block container.
 interface HTMLDListElement
          Definition list.
 interface HTMLElement
          All HTML element interfaces derive from this class.
 interface HTMLFieldSetElement
          Organizes form controls into logical groups.
 interface HTMLFontElement
          Local change to font.
 interface HTMLFormElement
          The FORM element encompasses behavior similar to a collection and an element.
 interface HTMLFrameElement
          Create a frame.
 interface HTMLFrameSetElement
          Create a grid of frames.
 interface HTMLHeadElement
          Document head information.
 interface HTMLHeadingElement
          For the H1 to H6 elements.
 interface HTMLHRElement
          Create a horizontal rule.
 interface HTMLHtmlElement
          Root of an HTML document.
 interface HTMLIFrameElement
          Inline subwindows.
 interface HTMLImageElement
          Embedded image.
 interface HTMLInputElement
          Form control.
 interface HTMLIsIndexElement
          This element is used for single-line text input.
 interface HTMLLabelElement
          Form field label text.
 interface HTMLLegendElement
          Provides a caption for a FIELDSET grouping.
 interface HTMLLIElement
          List item.
 interface HTMLLinkElement
          The LINK element specifies a link to an external resource, and defines this document's relationship to that resource (or vice versa).
 interface HTMLMapElement
          Client-side image map.
 interface HTMLMenuElement
          Menu list.
 interface HTMLMetaElement
          This contains generic meta-information about the document.
 interface HTMLModElement
          Notice of modification to part of a document.
 interface HTMLObjectElement
          Generic embedded object.
 interface HTMLOListElement
          Ordered list.
 interface HTMLOptGroupElement
          Group options together in logical subdivisions.
 interface HTMLOptionElement
          A selectable choice.
 interface HTMLParagraphElement
          Paragraphs.
 interface HTMLParamElement
          Parameters fed to the OBJECT element.
 interface HTMLPreElement
          Preformatted text.
 interface HTMLQuoteElement
          For the Q and BLOCKQUOTE elements.
 interface HTMLScriptElement
          Script statements.
 interface HTMLSelectElement
          The select element allows the selection of an option.
 interface HTMLStyleElement
          Style information.
 interface HTMLTableCaptionElement
          Table caption See the CAPTION element definition in HTML 4.0.
 interface HTMLTableCellElement
          The object used to represent the TH and TD elements.
 interface HTMLTableColElement
          Regroups the COL and COLGROUP elements.
 interface HTMLTableElement
          The create* and delete* methods on the table allow authors to construct and modify tables.
 interface HTMLTableRowElement
          A row in a table.
 interface HTMLTableSectionElement
          The THEAD , TFOOT , and TBODY elements.
 interface HTMLTextAreaElement
          Multi-line text field.
 interface HTMLTitleElement
          The document title.
 interface HTMLUListElement
          Unordered list.
 



Copyright © 1999 Apache XML Project. All Rights Reserved.