|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
|
+--gnu.xml.dom.DomNode
|
+--gnu.xml.dom.DomNsNode
|
+--gnu.xml.dom.DomElement
"Element" implementation.
| Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
| Constructor Summary | |
protected |
DomElement(Document owner,
java.lang.String namespaceURI,
java.lang.String name)
Constructs an Element node associated with the specified document. |
| Method Summary | |
java.lang.Object |
clone()
Shallow clone of the element, except that associated attributes are (deep) cloned. |
java.lang.String |
getAttribute(java.lang.String name)
DOM L1 Returns the value of the specified attribute, or an empty string. |
Attr |
getAttributeNode(java.lang.String name)
DOM L1 Returns the appropriate attribute node; the name is the nodeName property of the attribute. |
Attr |
getAttributeNodeNS(java.lang.String namespace,
java.lang.String localPart)
DOM L2 Returns the appropriate attribute node; the name combines the namespace name and the local part. |
java.lang.String |
getAttributeNS(java.lang.String namespaceURI,
java.lang.String local)
DOM L2 Returns the value of the specified attribute, or an empty string. |
NamedNodeMap |
getAttributes()
DOM L1 Returns the element's attributes |
java.lang.String |
getTagName()
DOM L1 Returns the element name (same as getNodeName). |
boolean |
hasAttribute(java.lang.String name)
DOM L2 Returns true if the element has an attribute with the specified name (specified or DTD defaulted). |
boolean |
hasAttributeNS(java.lang.String namespaceURI,
java.lang.String local)
DOM L2 Returns true if the element has an attribute with the specified name (specified or DTD defaulted). |
boolean |
hasAttributes()
DOM L2> Returns true iff this is an element node with attributes. |
void |
makeReadonly()
Marks this element, its children, and its associated attributes as readonly. |
void |
removeAttribute(java.lang.String name)
DOM L1 Removes the appropriate attribute node. |
Attr |
removeAttributeNode(Attr node)
DOM L1 Removes the appropriate attribute node; the name is the nodeName property of the attribute. |
void |
removeAttributeNS(java.lang.String namespace,
java.lang.String localPart)
DOM L2 Removes the appropriate attribute node; the name combines the namespace name and the local part. |
void |
setAttribute(java.lang.String name,
java.lang.String value)
DOM L1 Modifies an existing attribute to have the specified value, or creates a new one with that value. |
Attr |
setAttributeNode(Attr attr)
DOM L1 Stores the specified attribute, optionally overwriting any existing one with that name. |
Attr |
setAttributeNodeNS(Attr attr)
DOM L2 Stores the specified attribute, optionally overwriting any existing one with that name. |
void |
setAttributeNS(java.lang.String uri,
java.lang.String aname,
java.lang.String value)
DOM L2 Modifies an existing attribute to have the specified value, or creates a new one with that value. |
| Methods inherited from class gnu.xml.dom.DomNsNode |
getLocalName, getNamespaceURI, getNodeName, getPrefix, setPrefix |
| Methods inherited from class gnu.xml.dom.DomNode |
addEventListener, appendChild, cloneNode, createEvent, dispatchEvent, getChildNodes, getElementsByTagName, getElementsByTagNameNS, getFirstChild, getLastChild, getLength, getNextSibling, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPreviousSibling, hasChildNodes, insertBefore, isReadonly, isSupported, item, nameAndTypeEquals, normalize, removeChild, removeEventListener, replaceChild, setNodeValue, trimToSize |
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.w3c.dom.Element |
getElementsByTagName, getElementsByTagNameNS |
| Methods inherited from interface org.w3c.dom.Node |
appendChild, cloneNode, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefix |
| Constructor Detail |
protected DomElement(Document owner,
java.lang.String namespaceURI,
java.lang.String name)
This constructor should only be invoked by a Document as part of its createElement functionality, or through a subclass which is similarly used in a "Sub-DOM" style layer.
owner - The document with which this node is associatednamespaceURI - Combined with the local part of the name,
this is used to uniquely identify a type of elementname - Name of this element, which may include a prefix| Method Detail |
public NamedNodeMap getAttributes()
getAttributes in interface NodegetAttributes in class DomNodepublic boolean hasAttributes()
hasAttributes in interface NodehasAttributes in class DomNodeorg.w3c.dom.Nodetrue if this node has any attributes,
false otherwise.public java.lang.Object clone()
clone in class DomNodepublic void makeReadonly()
makeReadonly in class DomNodepublic final java.lang.String getTagName()
getTagName in interface Elementpublic java.lang.String getAttribute(java.lang.String name)
getAttribute in interface Elementorg.w3c.dom.ElementnameThe - name of the attribute to retrieve.Attr value as a string, or the empty string
if that attribute does not have a specified or default value.public boolean hasAttribute(java.lang.String name)
hasAttribute in interface Elementorg.w3c.dom.ElementnameThe - name of the attribute to look for.true if an attribute with the given name is
specified on this element or has a default value, false
otherwise.
public boolean hasAttributeNS(java.lang.String namespaceURI,
java.lang.String local)
hasAttributeNS in interface Elementorg.w3c.dom.ElementnamespaceURIThe - namespace URI of the attribute to look for.localNameThe - local name of the attribute to look for.true if an attribute with the given local name
and namespace URI is specified or has a default value on this
element, false otherwise.
public java.lang.String getAttributeNS(java.lang.String namespaceURI,
java.lang.String local)
getAttributeNS in interface Elementorg.w3c.dom.ElementnamespaceURIThe - namespace URI of the attribute to retrieve.localNameThe - local name of the attribute to retrieve.Attr value as a string, or the empty string
if that attribute does not have a specified or default value.public Attr getAttributeNode(java.lang.String name)
getAttributeNode in interface Elementorg.w3c.dom.ElementnameThe - name (nodeName) of the attribute to
retrieve.Attr node with the specified name (
nodeName) or null if there is no such
attribute.
public Attr getAttributeNodeNS(java.lang.String namespace,
java.lang.String localPart)
getAttributeNodeNS in interface Elementorg.w3c.dom.ElementnamespaceURIThe - namespace URI of the attribute to retrieve.localNameThe - local name of the attribute to retrieve.Attr node with the specified attribute local
name and namespace URI or null if there is no such
attribute.
public void setAttribute(java.lang.String name,
java.lang.String value)
setAttribute in interface Elementorg.w3c.dom.ElementnameThe - name of the attribute to create or alter.valueValue - to set in string form.DOMException - INVALID_CHARACTER_ERR: Raised if the specified name contains an
illegal character.
public void setAttributeNS(java.lang.String uri,
java.lang.String aname,
java.lang.String value)
setAttributeNS in interface Elementorg.w3c.dom.ElementnamespaceURIThe - namespace URI of the attribute to create or
alter.qualifiedNameThe - qualified name of the attribute to create or
alter.valueThe - value to set in string form.DOMException - INVALID_CHARACTER_ERR: Raised if the specified qualified name
contains an illegal character.
qualifiedName is
malformed, if the qualifiedName has a prefix and the
namespaceURI is null, if the
qualifiedName has a prefix that is "xml" and the
namespaceURI is different from "
http://www.w3.org/XML/1998/namespace", or if the
qualifiedName is "xmlns" and the
namespaceURI is different from "
http://www.w3.org/2000/xmlns/".public Attr setAttributeNode(Attr attr)
setAttributeNode in interface Elementorg.w3c.dom.ElementnewAttrThe - Attr node to add to the attribute list.newAttr attribute replaces an existing
attribute, the replaced Attr node is returned,
otherwise null is returned.DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a
different document than the one that created the element.
newAttr is already an
attribute of another Element object. The DOM user must
explicitly clone Attr nodes to re-use them in other
elements.public Attr setAttributeNodeNS(Attr attr)
setAttributeNodeNS in interface Elementorg.w3c.dom.ElementnewAttrThe - Attr node to add to the attribute list.newAttr attribute replaces an existing
attribute with the same local name and namespace URI, the replaced
Attr node is returned, otherwise null is
returned.DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a
different document than the one that created the element.
newAttr is already an
attribute of another Element object. The DOM user must
explicitly clone Attr nodes to re-use them in other
elements.public void removeAttribute(java.lang.String name)
Note that since there is no portable way for DOM to record DTD information, default values for attributes will never be provided automatically.
removeAttribute in interface Elementorg.w3c.dom.ElementnameThe - name of the attribute to remove.DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.public Attr removeAttributeNode(Attr node)
Note that since there is no portable way for DOM to record DTD information, default values for attributes will never be provided automatically.
removeAttributeNode in interface Elementorg.w3c.dom.ElementoldAttrThe - Attr node to remove from the attribute
list.Attr node that was removed.DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
oldAttr is not an attribute
of the element.
public void removeAttributeNS(java.lang.String namespace,
java.lang.String localPart)
Note that since there is no portable way for DOM to record DTD information, default values for attributes will never be provided automatically.
removeAttributeNS in interface Elementorg.w3c.dom.ElementnamespaceURIThe - namespace URI of the attribute to remove.localNameThe - local name of the attribute to remove.DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
|
Source code is GPL'd in the JAXP subproject at http://savannah.gnu.org/projects/classpathx |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||