public class HTMLElementImpl extends ElementImpl implements org.w3c.dom.html.HTMLElement
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.HTMLElement
,
Serialized Formattributes, name
firstChild, fNodeListCache, ownerDocument
nextSibling, previousSibling
DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_IS_CONTAINED, DOCUMENT_POSITION_PRECEDING, ELEMENT_DEFINITION_NODE, FIRSTCHILD, flags, HASSTRING, ID, IGNORABLEWS, NORMALIZED, OWNED, ownerNode, READONLY, SPECIFIED, SYNCCHILDREN, SYNCDATA, TREE_POSITION_ANCESTOR, TREE_POSITION_DESCENDANT, TREE_POSITION_DISCONNECTED, TREE_POSITION_EQUIVALENT, TREE_POSITION_FOLLOWING, TREE_POSITION_PRECEDING, TREE_POSITION_SAME_NODE
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
DERIVATION_EXTENSION, DERIVATION_LIST, DERIVATION_RESTRICTION, DERIVATION_UNION
Constructor and Description |
---|
HTMLElementImpl(HTMLDocumentImpl owner,
String tagName)
Constructor required owner document and element tag name.
|
Modifier and Type | Method and Description |
---|---|
String |
getAttribute(String attrName)
Look up a single Attribute by name.
|
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 |
getAttributeNS(String namespaceURI,
String localName)
Introduced in DOM Level 2.
|
String |
getClassName() |
String |
getDir() |
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.
|
NodeList |
getElementsByTagNameNS(String namespaceURI,
String localName)
Introduced in DOM Level 2.
|
org.w3c.dom.html.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) |
cloneNode, getAttributes, getBaseURI, getChildElementCount, getDefaultAttributes, getFirstElementChild, getLastElementChild, getNextElementSibling, getNodeName, getNodeType, getPreviousElementSibling, getSchemaTypeInfo, getTagName, getTypeName, getTypeNamespace, getXercesAttribute, getXMLBaseAttribute, hasAttribute, hasAttributeNS, hasAttributes, isDerivedFrom, isEqualNode, normalize, reconcileDefaultAttributes, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS, setOwnerDocument, setReadOnly, setupDefaultAttributes, setXercesAttributeNode, synchronizeData
getChildNodes, getChildNodesUnoptimized, getFirstChild, getLastChild, getLength, getOwnerDocument, getTextContent, hasChildNodes, insertBefore, item, removeChild, replaceChild, setTextContent, synchronizeChildren
getNextSibling, getParentNode, getPreviousSibling
addEventListener, appendChild, changed, changes, compareDocumentPosition, compareTreePosition, dispatchEvent, getContainer, getFeature, getLocalName, getNamespaceURI, getNodeNumber, getNodeValue, getPrefix, getReadOnly, getUserData, getUserData, getUserDataRecord, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, needsSyncChildren, removeEventListener, setNodeValue, setPrefix, setUserData, setUserData, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
public HTMLElementImpl(HTMLDocumentImpl owner, String tagName)
owner
- The owner HTML documenttagName
- The element's tag namepublic String getId()
getId
in interface org.w3c.dom.html.HTMLElement
public void setId(String id)
setId
in interface org.w3c.dom.html.HTMLElement
public String getTitle()
getTitle
in interface org.w3c.dom.html.HTMLElement
public void setTitle(String title)
setTitle
in interface org.w3c.dom.html.HTMLElement
public String getLang()
getLang
in interface org.w3c.dom.html.HTMLElement
public void setLang(String lang)
setLang
in interface org.w3c.dom.html.HTMLElement
public String getDir()
getDir
in interface org.w3c.dom.html.HTMLElement
public void setDir(String dir)
setDir
in interface org.w3c.dom.html.HTMLElement
public String getClassName()
getClassName
in interface org.w3c.dom.html.HTMLElement
public void setClassName(String className)
setClassName
in interface org.w3c.dom.html.HTMLElement
public Attr getAttributeNode(String attrName)
ElementImpl
If no matching attribute is available, returns null.
getAttributeNode
in interface Element
getAttributeNode
in class ElementImpl
public Attr getAttributeNodeNS(String namespaceURI, String localName)
ElementImpl
getAttributeNodeNS
in interface Element
getAttributeNodeNS
in class ElementImpl
namespaceURI
- The namespace URI of the attribute to
retrieve.localName
- The local name of the attribute to retrieve.public String getAttribute(String attrName)
ElementImpl
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().
getAttribute
in interface Element
getAttribute
in class ElementImpl
public String getAttributeNS(String namespaceURI, String localName)
ElementImpl
Retrieves an attribute value by local name and namespace URI.
getAttributeNS
in interface Element
getAttributeNS
in class ElementImpl
namespaceURI
- The namespace URI of the attribute to
retrieve.localName
- The local name of the attribute to retrieve.public final NodeList getElementsByTagName(String tagName)
ElementImpl
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.
getElementsByTagName
in interface Element
getElementsByTagName
in class ElementImpl
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 "*".DeepNodeListImpl
public final NodeList getElementsByTagNameNS(String namespaceURI, String localName)
ElementImpl
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.
getElementsByTagNameNS
in interface Element
getElementsByTagNameNS
in class ElementImpl
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.public org.w3c.dom.html.HTMLFormElement getForm()
Copyright © 2016 JBoss by Red Hat. All rights reserved.