|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.axiom.om.impl.dom.NodeImpl
org.apache.axiom.om.impl.dom.ChildNode
org.apache.axiom.om.impl.dom.ParentNode
org.apache.axiom.om.impl.dom.ElementImpl
public class ElementImpl
Implementation of the org.w3c.dom.Element and org.apache.axiom.om.Element interfaces.
Field Summary | |
---|---|
protected String |
localName
|
protected OMNamespace |
namespace
|
Fields inherited from class org.apache.axiom.om.impl.dom.ParentNode |
---|
firstChild, lastChild |
Fields inherited from class org.apache.axiom.om.impl.dom.ChildNode |
---|
nextSibling, parentNode, previousSibling |
Fields inherited from class org.apache.axiom.om.impl.dom.NodeImpl |
---|
builder, done, factory, FIRSTCHILD, flags, NORMALIZED, OWNED, ownerNode, READONLY, SPECIFIED |
Fields inherited from interface org.w3c.dom.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 |
Fields inherited from interface org.apache.axiom.om.OMNode |
---|
CDATA_SECTION_NODE, COMMENT_NODE, DTD_NODE, ELEMENT_NODE, ENTITY_REFERENCE_NODE, PI_NODE, SPACE_NODE, TEXT_NODE |
Constructor Summary | |
---|---|
ElementImpl(DocumentImpl ownerDocument,
String tagName,
NamespaceImpl ns,
OMFactory factory)
Creates a new element with the namespace. |
|
ElementImpl(DocumentImpl ownerDocument,
String tagName,
NamespaceImpl ns,
OMXMLParserWrapper builder,
OMFactory factory)
|
|
ElementImpl(DocumentImpl ownerDocument,
String tagName,
OMFactory factory)
|
|
ElementImpl(OMFactory factory)
|
|
ElementImpl(ParentNode parentNode,
String tagName,
NamespaceImpl ns,
OMFactory factory)
|
|
ElementImpl(ParentNode parentNode,
String tagName,
NamespaceImpl ns,
OMXMLParserWrapper builder,
OMFactory factory)
|
|
ElementImpl(String tagName,
NamespaceImpl ns,
OMXMLParserWrapper builder,
OMFactory factory)
|
Method Summary | |
---|---|
OMAttribute |
addAttribute(OMAttribute attr)
Adds an attribute to this element. |
OMAttribute |
addAttribute(String attributeName,
String value,
OMNamespace ns)
The behaviour of this is the same as org.w3c.dom.Element#setAttributeNS |
void |
buildWithAttachments()
Parses this node and builds the object structure in memory. |
org.w3c.dom.Node |
cloneNode(boolean deep)
|
OMElement |
cloneOMElement()
Creates a clone which belongs to a new document. |
OMNamespace |
declareDefaultNamespace(String uri)
We use "" to store the default namespace of this element. |
OMNamespace |
declareNamespace(OMNamespace namespace)
Allows overriding an existing declaration if the same prefix was used. |
OMNamespace |
declareNamespace(String uri,
String prefix)
Allows overriding an existing declaration if the same prefix was used. |
void |
discard()
Discards a node. |
OMNamespace |
findNamespace(String uri,
String prefix)
Finds a namespace with the given uri and prefix, in the scope of the hierarchy. |
OMNamespace |
findNamespaceURI(String prefix)
Checks for a namespace in the context of this element with the given prefix and returns the relevant namespace object, if available. |
Iterator |
getAllAttributes()
Returns a list of OMAttributes. |
Iterator |
getAllDeclaredNamespaces()
Returns an iterator for all of the namespaces declared on this element. |
OMAttribute |
getAttribute(javax.xml.namespace.QName qname)
Returns a named attribute if present. |
String |
getAttribute(String name)
Looks in the local list of attributes and returns if found. |
org.w3c.dom.Attr |
getAttributeNode(String name)
Retrieves an attribute node by name. |
org.w3c.dom.Attr |
getAttributeNodeNS(String namespaceURI,
String localName)
Retrieves an attribute node by local name and namespace URI. |
String |
getAttributeNS(String namespaceURI,
String localName)
Retrieves an attribute value by local name and namespace URI. |
org.w3c.dom.NamedNodeMap |
getAttributes()
Returns the set of attributes of this node and the namespace declarations available. |
String |
getAttributeValue(javax.xml.namespace.QName qname)
Returns a named attribute's value, if present. |
OMXMLParserWrapper |
getBuilder()
Returns the builder object. |
Iterator |
getChildElements()
Returns a filtered list of children - just the elements. |
OMNamespace |
getDefaultNamespace()
This will retrieve the default namespace of this element, if available. |
org.w3c.dom.NodeList |
getElementsByTagName(String name)
|
org.w3c.dom.NodeList |
getElementsByTagNameNS(String namespaceURI,
String localName)
|
OMElement |
getFirstElement()
Returns the first Element node. |
int |
getLineNumber()
|
String |
getLocalName()
Returns the local name of this element node |
OMNamespace |
getNamespace()
Returns the namespace of this element. |
String |
getNamespaceURI()
Returns the value of the namespace URI. |
String |
getNamespaceURI(String prefix)
Returns the namespace uri, given the prefix. |
OMNode |
getNextOMSibling()
Default behavior returns null, overriden in ChildNode. |
String |
getNodeName()
|
short |
getNodeType()
|
String |
getPrefix()
Returns the namespace prefix of this element node |
javax.xml.namespace.QName |
getQName()
Returns the QName of this element. |
org.w3c.dom.TypeInfo |
getSchemaTypeInfo()
|
String |
getTagName()
|
String |
getText()
Gets all the text children and concatinates them to a single string. |
javax.xml.namespace.QName |
getTextAsQName()
OMText can contain its information as a QName as well. |
String |
getTrimmedText()
|
int |
getType()
Returns the type of node. |
javax.xml.stream.XMLStreamReader |
getXMLStreamReader()
Returns the pull parser that will generate the pull events relevant to THIS element. |
javax.xml.stream.XMLStreamReader |
getXMLStreamReaderWithoutCaching()
Returns the pull parser that will generate the pull events relevant to THIS element. |
boolean |
hasAttribute(String name)
|
boolean |
hasAttributeNS(String namespaceURI,
String localName)
Returns whether the given attribute is available or not. |
boolean |
hasAttributes()
Returns whether this element contains any attribute or not. |
void |
internalSerialize(javax.xml.stream.XMLStreamWriter writer)
Serializes the node with caching. |
protected void |
internalSerialize(javax.xml.stream.XMLStreamWriter writer,
boolean cache)
|
void |
internalSerializeAndConsume(javax.xml.stream.XMLStreamWriter writer)
Serializes the node without caching. |
void |
removeAttribute(OMAttribute attr)
Removes an attribute from the element. |
void |
removeAttribute(String name)
Removes an attribute by name. |
org.w3c.dom.Attr |
removeAttributeNode(org.w3c.dom.Attr oldAttr)
Removes the specified attribute node. |
void |
removeAttributeNS(String namespaceURI,
String localName)
|
boolean |
removeNamespace(String prefix)
Removes a declared namespace given its prefix. |
javax.xml.namespace.QName |
resolveQName(String qname)
Turn a prefix:local qname string into a proper QName, evaluating it in the OMElement context unprefixed qnames resolve to the local namespace |
void |
setAttribute(String name,
String value)
|
org.w3c.dom.Attr |
setAttributeNode(org.w3c.dom.Attr attr)
Adds a new attribute node. |
org.w3c.dom.Attr |
setAttributeNodeNS(org.w3c.dom.Attr attr)
|
void |
setAttributeNS(String namespaceURI,
String qualifiedName,
String value)
Adds a new attribute. |
void |
setBuilder(OMXMLParserWrapper wrapper)
Sets the OM builder. |
void |
setIdAttribute(String name,
boolean isId)
|
void |
setIdAttributeNode(org.w3c.dom.Attr idAttr,
boolean isId)
|
void |
setIdAttributeNS(String namespaceURI,
String localName,
boolean isId)
|
void |
setLineNumber(int lineNumber)
|
void |
setLocalName(String localName)
Sets the local name. |
void |
setNamespace(OMNamespace namespace)
Sets the namespace. |
void |
setNamespaceWithNoFindInCurrentScope(OMNamespace namespace)
This will not search the namespace in the scope nor will declare in the current element, as in setNamespace(OMNamespace). |
protected void |
setOwnerDocument(DocumentImpl document)
Sets the owner document. |
void |
setText(javax.xml.namespace.QName text)
|
void |
setText(String text)
Creates a text node with the given value and adds it to the element. |
void |
setType(int nodeType)
|
String |
toString()
Overridden toString() for ease of debugging. |
String |
toStringWithConsume()
This is a convenience method only. |
Methods inherited from class org.apache.axiom.om.impl.dom.ParentNode |
---|
addChild, buildNext, getChildNodes, getChildren, getChildrenWithLocalName, getChildrenWithName, getChildrenWithNamespaceURI, getFirstChild, getFirstChildWithName, getFirstOMChild, getLastChild, getTextContent, hasChildNodes, importNode, insertBefore, removeChild, replaceChild, setFirstChild, setLastChild, setTextContent |
Methods inherited from class org.apache.axiom.om.impl.dom.ChildNode |
---|
detach, getNextSibling, getParent, getParentNode, getPreviousOMSibling, getPreviousSibling, insertSiblingAfter, insertSiblingBefore, setNextOMSibling, setParent, setPreviousOMSibling |
Methods inherited from class org.apache.axiom.om.impl.dom.NodeImpl |
---|
appendChild, build, close, compareDocumentPosition, getBaseURI, getFeature, getLength, getNodeValue, getOMFactory, getOwnerDocument, getUserData, internalSerializeWithCache, isComplete, isDefaultNamespace, isEqualNode, isSameNode, isSupported, item, lookupNamespaceURI, lookupPrefix, normalize, serialize, serialize, serialize, serialize, serialize, serializeAndConsume, serializeAndConsume, serializeAndConsume, serializeAndConsume, serializeAndConsume, setComplete, setNodeValue, setPrefix, setUserData |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.w3c.dom.Node |
---|
appendChild, compareDocumentPosition, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getNextSibling, getNodeValue, getOwnerDocument, getParentNode, getPreviousSibling, getTextContent, getUserData, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData |
Methods inherited from interface org.apache.axiom.om.OMElement |
---|
setFirstChild |
Methods inherited from interface org.apache.axiom.om.OMNode |
---|
build, close, detach, getOMFactory, getParent, getPreviousOMSibling, insertSiblingAfter, insertSiblingBefore, isComplete, serialize, serialize, serialize, serialize, serialize, serializeAndConsume, serializeAndConsume, serializeAndConsume, serializeAndConsume, serializeAndConsume |
Methods inherited from interface org.apache.axiom.om.OMContainer |
---|
addChild, buildNext, getChildren, getChildrenWithLocalName, getChildrenWithName, getChildrenWithNamespaceURI, getFirstChildWithName, getFirstOMChild, isComplete |
Methods inherited from interface org.apache.axiom.om.impl.OMContainerEx |
---|
setComplete |
Field Detail |
---|
protected OMNamespace namespace
protected String localName
Constructor Detail |
---|
public ElementImpl(DocumentImpl ownerDocument, String tagName, OMFactory factory)
ownerDocument
- public ElementImpl(DocumentImpl ownerDocument, String tagName, NamespaceImpl ns, OMFactory factory)
ownerDocument
- tagName
- ns
- public ElementImpl(DocumentImpl ownerDocument, String tagName, NamespaceImpl ns, OMXMLParserWrapper builder, OMFactory factory)
public ElementImpl(ParentNode parentNode, String tagName, NamespaceImpl ns, OMFactory factory)
public ElementImpl(ParentNode parentNode, String tagName, NamespaceImpl ns, OMXMLParserWrapper builder, OMFactory factory)
public ElementImpl(String tagName, NamespaceImpl ns, OMXMLParserWrapper builder, OMFactory factory)
public ElementImpl(OMFactory factory)
Method Detail |
---|
public short getNodeType()
getNodeType
in interface org.w3c.dom.Node
public String getNodeName()
getNodeName
in interface org.w3c.dom.Node
public String getNamespaceURI()
getNamespaceURI
in interface org.w3c.dom.Node
getNamespaceURI
in class NodeImpl
public int getType() throws OMException
OMNode
getType
in interface OMNode
OMNode.ELEMENT_NODE
, OMNode.TEXT_NODE
, OMNode.CDATA_SECTION_NODE
,
OMNode.COMMENT_NODE
, OMNode.DTD_NODE
, OMNode.PI_NODE
, OMNode.ENTITY_REFERENCE_NODE
, OMNode.SPACE_NODE
, or OMNode.TEXT_NODE
.
OMException
public void setType(int nodeType) throws OMException
setType
in interface OMNodeEx
OMException
public String getTagName()
getTagName
in interface org.w3c.dom.Element
public void removeAttribute(String name) throws org.w3c.dom.DOMException
removeAttribute
in interface org.w3c.dom.Element
name
- The name of the attribute to remove
org.w3c.dom.DOMException
Element.removeAttribute(String)
public void removeAttributeNS(String namespaceURI, String localName) throws org.w3c.dom.DOMException
removeAttributeNS
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
public org.w3c.dom.Attr removeAttributeNode(org.w3c.dom.Attr oldAttr) throws org.w3c.dom.DOMException
removeAttributeNode
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
Element.removeAttributeNode(org.w3c.dom.Attr)
public boolean hasAttribute(String name)
hasAttribute
in interface org.w3c.dom.Element
public boolean hasAttributeNS(String namespaceURI, String localName)
hasAttributeNS
in interface org.w3c.dom.Element
Element.hasAttributeNS(String, String)
public String getAttribute(String name)
getAttribute
in interface org.w3c.dom.Element
Element.getAttribute(String)
public org.w3c.dom.Attr getAttributeNode(String name)
getAttributeNode
in interface org.w3c.dom.Element
Element.getAttributeNode(String)
public String getAttributeNS(String namespaceURI, String localName)
getAttributeNS
in interface org.w3c.dom.Element
Element.getAttributeNS(String, String)
public org.w3c.dom.Attr getAttributeNodeNS(String namespaceURI, String localName)
getAttributeNodeNS
in interface org.w3c.dom.Element
Element.getAttributeNodeNS(String, String)
public org.w3c.dom.Attr setAttributeNode(org.w3c.dom.Attr attr) throws org.w3c.dom.DOMException
setAttributeNode
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
Element.setAttributeNode(org.w3c.dom.Attr)
public void setAttribute(String name, String value) throws org.w3c.dom.DOMException
setAttribute
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
public org.w3c.dom.Attr setAttributeNodeNS(org.w3c.dom.Attr attr) throws org.w3c.dom.DOMException
setAttributeNodeNS
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
public void setAttributeNS(String namespaceURI, String qualifiedName, String value) throws org.w3c.dom.DOMException
setAttributeNS
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
Element.setAttributeNS(String, String, String)
public boolean hasAttributes()
hasAttributes
in interface org.w3c.dom.Node
hasAttributes
in class NodeImpl
public org.w3c.dom.NodeList getElementsByTagNameNS(String namespaceURI, String localName)
getElementsByTagNameNS
in interface org.w3c.dom.Element
public org.w3c.dom.NodeList getElementsByTagName(String name)
getElementsByTagName
in interface org.w3c.dom.Element
public OMAttribute addAttribute(OMAttribute attr)
OMElement
There is no order implied by added attributes.
addAttribute
in interface OMElement
attr
- The attribute to add.
(org.apache.axiom.om.OMAttribute)
public OMAttribute addAttribute(String attributeName, String value, OMNamespace ns)
addAttribute
in interface OMElement
attributeName
- The "local name" for the attribute.value
- The string value of the attribute.ns
- The namespace has to be one of the in scope namespace. i.e. the passed
namespace must be declared in the parent element of this attribute or
ancestors of the parent element of the attribute.
OMElement.addAttribute(String, String, org.apache.axiom.om.OMNamespace)
public OMNamespace declareNamespace(OMNamespace namespace)
declareNamespace
in interface OMElement
namespace
- The namespace to declare.
(org.apache.axiom.om.OMNamespace)
public OMNamespace declareNamespace(String uri, String prefix)
declareNamespace
in interface OMElement
uri
- The namespace to declare in the current scope. The caller is expected to
ensure that the URI is a valid namespace name.prefix
- The prefix to associate with the given namespace. The caller is expected to
ensure that this is a valid XML prefix. If "" is given, first this will check
for an existing namespace with the same uri. If not found, a prefix will be
auto-generated.
OMElement.declareNamespace(String, String)
public OMNamespace declareDefaultNamespace(String uri)
declareDefaultNamespace
in interface OMElement
uri
- public OMNamespace getDefaultNamespace()
OMElement
getDefaultNamespace
in interface OMElement
public OMNamespace findNamespace(String uri, String prefix)
OMElement
Searches from the current element and goes up the hiararchy until a match is found. If no match is found, returns null.
Either prefix or uri should be null. Results are undefined if both are specified.
findNamespace
in interface OMElement
uri
- The namespace to look for. If this is specified, prefix should be
null.prefix
- The prefix to look for. If this is specified, uri should be null.
OMElement.findNamespace(String, String)
public OMNamespace findNamespaceURI(String prefix)
OMElement
findNamespaceURI
in interface OMElement
public OMAttribute getAttribute(javax.xml.namespace.QName qname)
getAttribute
in interface OMElement
qname
- the qualified name to search for
(javax.xml.namespace.QName)
public String getAttributeValue(javax.xml.namespace.QName qname)
getAttributeValue
in interface OMElement
qname
- the qualified name to search for
public OMXMLParserWrapper getBuilder()
OMElement
getBuilder
in interface OMElement
public OMElement getFirstElement()
getFirstElement
in interface OMElement
OMElement.getFirstElement()
public OMNamespace getNamespace() throws OMException
getNamespace
in interface OMElement
OMException
OMElement.getNamespace()
public javax.xml.namespace.QName getQName()
getQName
in interface OMElement
QName
for the element.OMElement.getQName()
public String getText()
getText
in interface OMElement
OMElement.getText()
public javax.xml.namespace.QName getTextAsQName()
OMElement
getTextAsQName
in interface OMElement
public String getTrimmedText()
public void removeAttribute(OMAttribute attr)
removeAttribute
in interface OMElement
(org.apache.axiom.om.OMAttribute)
public void setBuilder(OMXMLParserWrapper wrapper)
setBuilder
in interface OMElement
(org.apache.axiom.om.OMXMLParserWrapper)
public void setLocalName(String localName)
setLocalName
in interface OMElement
OMElement.setLocalName(String)
public void setNamespace(OMNamespace namespace)
setNamespace
in interface OMElement
(org.apache.axiom.om.OMNamespace)
public void setNamespaceWithNoFindInCurrentScope(OMNamespace namespace)
OMElement
setNamespaceWithNoFindInCurrentScope
in interface OMElement
public void setText(String text)
setText
in interface OMElement
OMElement.setText(String)
public void setText(javax.xml.namespace.QName text)
setText
in interface OMElement
public void internalSerialize(javax.xml.stream.XMLStreamWriter writer) throws javax.xml.stream.XMLStreamException
OMNodeEx
internalSerialize
in interface OMNodeEx
javax.xml.stream.XMLStreamException
public void internalSerializeAndConsume(javax.xml.stream.XMLStreamWriter writer) throws javax.xml.stream.XMLStreamException
OMNodeEx
internalSerializeAndConsume
in interface OMNodeEx
javax.xml.stream.XMLStreamException
protected void internalSerialize(javax.xml.stream.XMLStreamWriter writer, boolean cache) throws javax.xml.stream.XMLStreamException
javax.xml.stream.XMLStreamException
public javax.xml.stream.XMLStreamReader getXMLStreamReaderWithoutCaching()
OMElement
Caching is off.
getXMLStreamReaderWithoutCaching
in interface OMElement
public javax.xml.stream.XMLStreamReader getXMLStreamReader()
OMElement
Caching is on.
getXMLStreamReader
in interface OMElement
public String toStringWithConsume() throws javax.xml.stream.XMLStreamException
OMElement
toStringWithConsume
in interface OMElement
javax.xml.stream.XMLStreamException
public String toString()
toString
in interface OMElement
toString
in class Object
Object.toString()
public Iterator getChildElements()
OMElement
getChildElements
in interface OMElement
OMContainer.getChildren()
,
OMContainer.getChildrenWithName(javax.xml.namespace.QName)
public Iterator getAllDeclaredNamespaces() throws OMException
OMElement
If you're interested in all namespaces in scope, you need to call this function for all parent elements as well. Note that the iterator may be invalidated by any call to either declareNamespace function.
getAllDeclaredNamespaces
in interface OMElement
OMNamespace
items declared on the current
element.
OMException
OMElement.getAllDeclaredNamespaces()
public Iterator getAllAttributes()
OMElement
Note that the iterator returned by this function will be invalidated by any addAttribute call.
getAllAttributes
in interface OMElement
Iterator
of OMAttribute
items associated with the
element.OMElement.getAllAttributes()
public String getLocalName()
getLocalName
in interface OMElement
getLocalName
in interface org.w3c.dom.Node
getLocalName
in class NodeImpl
Node.getLocalName()
public String getPrefix()
getPrefix
in interface org.w3c.dom.Node
getPrefix
in class NodeImpl
Node.getPrefix()
protected void setOwnerDocument(DocumentImpl document)
NodeImpl
setOwnerDocument
in class NodeImpl
(org.apache.axiom.om.impl.dom.DocumentImpl)
public javax.xml.namespace.QName resolveQName(String qname)
resolveQName
in interface OMElement
qname
- prefixed qname string to resolve
public OMElement cloneOMElement()
cloneOMElement
in interface OMElement
OMElement.cloneOMElement()
public void setLineNumber(int lineNumber)
setLineNumber
in interface OMElement
public int getLineNumber()
getLineNumber
in interface OMElement
public org.w3c.dom.Node cloneNode(boolean deep)
cloneNode
in interface org.w3c.dom.Node
cloneNode
in class ParentNode
public org.w3c.dom.NamedNodeMap getAttributes()
getAttributes
in interface org.w3c.dom.Node
getAttributes
in class NodeImpl
ElementImpl
public String getNamespaceURI(String prefix)
prefix
-
public boolean removeNamespace(String prefix)
prefix
-
public OMNode getNextOMSibling() throws OMException
NodeImpl
getNextOMSibling
in interface OMNode
getNextOMSibling
in class ChildNode
OMException
public void discard() throws OMException
OMNode
discard
in interface OMNode
discard
in class ChildNode
OMException
public void setIdAttribute(String name, boolean isId) throws org.w3c.dom.DOMException
setIdAttribute
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
public void setIdAttributeNS(String namespaceURI, String localName, boolean isId) throws org.w3c.dom.DOMException
setIdAttributeNS
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
public void setIdAttributeNode(org.w3c.dom.Attr idAttr, boolean isId) throws org.w3c.dom.DOMException
setIdAttributeNode
in interface org.w3c.dom.Element
org.w3c.dom.DOMException
public org.w3c.dom.TypeInfo getSchemaTypeInfo()
getSchemaTypeInfo
in interface org.w3c.dom.Element
public void buildWithAttachments()
NodeImpl
buildWithAttachments
in interface OMNode
buildWithAttachments
in class NodeImpl
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |