public class

HTMLElementImpl

extends ElementImpl
implements HTMLElement
java.lang.Object
   ↳ org.apache.xerces.dom.NodeImpl
     ↳ org.apache.xerces.dom.ChildNode
       ↳ org.apache.xerces.dom.ParentNode
         ↳ org.apache.xerces.dom.ElementImpl
           ↳ org.apache.html.dom.HTMLElementImpl
Known Direct Subclasses

Class Overview

Implements an HTML-specific element, an org.w3c.dom.Element that will only appear inside HTML documents. This element extends ElementImpl by adding methods for directly manipulating HTML-specific attributes. All HTML elements gain access to the id, title, lang, dir and class attributes. Other elements add their own specific attributes.@xerces.internal

See Also
  • org.w3c.dom.html.HTMLElement

Summary

[Expand]
Inherited Constants
From class org.apache.xerces.dom.NodeImpl
From interface org.w3c.dom.Node
From interface org.w3c.dom.TypeInfo
[Expand]
Inherited Fields
From class org.apache.xerces.dom.ElementImpl
From class org.apache.xerces.dom.ParentNode
From class org.apache.xerces.dom.ChildNode
From class org.apache.xerces.dom.NodeImpl
Public Constructors
HTMLElementImpl(HTMLDocumentImpl owner, String tagName)
Constructor required owner document and element tag name.
Public Methods
String getAttribute(String attrName)
Look up a single Attribute by name.
String getAttributeNS(String namespaceURI, String localName)
Introduced in DOM Level 2.
Attr getAttributeNode(String attrName)
Look up a single Attribute by name.
Attr getAttributeNodeNS(String namespaceURI, String localName)
Retrieves an Attr node by local name and namespace URI.
String getClassName()
String getDir()
final NodeList getElementsByTagName(String tagName)
Returns a NodeList of all descendent nodes (children, grandchildren, and so on) which are Elements and which have the specified tag name.
final NodeList getElementsByTagNameNS(String namespaceURI, String localName)
Introduced in DOM Level 2.
HTMLFormElement getForm()
Convenience method returns the form in which this form element is contained.
String getId()
String getLang()
String getTitle()
void setClassName(String className)
void setDir(String dir)
void setId(String id)
void setLang(String lang)
void setTitle(String title)
[Expand]
Inherited Methods
From class org.apache.xerces.dom.ElementImpl
From class org.apache.xerces.dom.ParentNode
From class org.apache.xerces.dom.ChildNode
From class org.apache.xerces.dom.NodeImpl
From class java.lang.Object
From interface org.w3c.dom.Element
From interface org.w3c.dom.Node
From interface org.w3c.dom.NodeList
From interface org.w3c.dom.TypeInfo
From interface org.w3c.dom.events.EventTarget
From interface org.w3c.dom.html.HTMLElement

Public Constructors

public HTMLElementImpl (HTMLDocumentImpl owner, String tagName)

Constructor required owner document and element tag name. Will be called by the constructor of specific element types but with a known tag name. Assures that the owner document is an HTML element.

Parameters
owner The owner HTML document
tagName The element's tag name

Public Methods

public String getAttribute (String attrName)

Look up a single Attribute by name. Returns the Attribute's string value, or an empty string (NOT null!) to indicate that the name did not map to a currently defined attribute.

Note: Attributes may contain complex node trees. This method returns the "flattened" string obtained from Attribute.getValue(). If you need the structure information, see getAttributeNode().

public String getAttributeNS (String namespaceURI, String localName)

Introduced in DOM Level 2.

Retrieves an attribute value by local name and namespace URI.

Parameters
namespaceURI The namespace URI of the attribute to retrieve.
localName The local name of the attribute to retrieve.
Returns
  • String The Attr value as a string, or empty string if that attribute does not have a specified or default value.

public Attr getAttributeNode (String attrName)

Look up a single Attribute by name. Returns the Attribute Node, so its complete child tree is available. This could be important in XML, where the string rendering may not be sufficient information.

If no matching attribute is available, returns null.

public Attr getAttributeNodeNS (String namespaceURI, String localName)

Retrieves an Attr node by local name and namespace URI.

Parameters
namespaceURI The namespace URI of the attribute to retrieve.
localName The local name of the attribute to retrieve.
Returns
  • Attr The Attr node with the specified attribute local name and namespace URI or null if there is no such attribute.

public String getClassName ()

public String getDir ()

public final NodeList getElementsByTagName (String tagName)

Returns a NodeList of all descendent nodes (children, grandchildren, and so on) which are Elements and which have the specified tag name.

Note: NodeList is a "live" view of the DOM. Its contents will change as the DOM changes, and alterations made to the NodeList will be reflected in the DOM.

Parameters
tagName The type of element to gather. To obtain a list of all elements no matter what their names, use the wild-card tag name "*".

public final NodeList getElementsByTagNameNS (String namespaceURI, String localName)

Introduced in DOM Level 2.

Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they would be encountered in a preorder traversal of the Document tree, starting from this node.

Parameters
namespaceURI The namespace URI of the elements to match on. The special value "*" matches all namespaces. When it is null or an empty string, this method behaves like getElementsByTagName.
localName The local name of the elements to match on. The special value "*" matches all local names.
Returns
  • NodeList A new NodeList object containing all the matched Elements.

public HTMLFormElement getForm ()

Convenience method returns the form in which this form element is contained. This method is exposed for form elements through the DOM API, but other elements have no access to it through the API.

public String getId ()

public String getLang ()

public String getTitle ()

public void setClassName (String className)

public void setDir (String dir)

public void setId (String id)

public void setLang (String lang)

public void setTitle (String title)