org.apache.batik.dom
public abstract class AbstractElementNS extends AbstractElement
| Field Summary | |
|---|---|
| protected String | namespaceURI
The namespace URI |
| Constructor Summary | |
|---|---|
| protected | AbstractElementNS()
Creates a new AbstractElementNS object. |
| protected | AbstractElementNS(String nsURI, String qname, AbstractDocument owner)
Creates a new AbstractElementNS object. |
| Method Summary | |
|---|---|
| protected Node | copyInto(Node n)
Copy the fields of the current node into the given node. |
| protected Node | deepCopyInto(Node n)
Deeply copy the fields of the current node into the given node. |
| protected Node | deepExport(Node n, AbstractDocument d)
Deeply exports this node to the given document. |
| protected Node | export(Node n, AbstractDocument d)
Exports this node to the given document. |
| String | getNamespaceURI()
DOM: Implements org.w3c.dom.Node#getNamespaceURI(). |
Parameters: nsURI The element namespace URI. qname The element qualified name for validation purposes. owner The owner document.
Throws: DOMException
INVALID_CHARACTER_ERR: Raised if the specified qualified name
contains an illegal character.
NAMESPACE_ERR: Raised if the qualifiedName is
malformed, if the qualifiedName has a prefix and the
namespaceURI is null or an empty string,
or if the qualifiedName has a prefix that is "xml" and
the namespaceURI is different from
"http://www.w3.org/XML/1998/namespace" .
Parameters: n a node of the type of this.
Parameters: n a node of the type of this.
Returns: namespaceURI.