| 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.xerces.dom.DeferredElementImpl
DeferredElementImpl | public class DeferredElementImpl extends ElementImpl implements DeferredNode(Code) | | Elements represent most of the "markup" and structure of the
document. They contain both the data for the element itself
(element name and attributes), and any contained nodes, including
document text (as children).
Elements may have Attributes associated with them; the API for this is
defined in Node, but the function is implemented here. In general, XML
applications should retrive Attributes as Nodes, since they may contain
entity references and hence be a fairly complex sub-tree. HTML users will
be dealing with simple string values, and convenience methods are provided
to work in terms of Strings.
DeferredElementImpl inherits from ElementImpl which does not support
Namespaces. DeferredElementNSImpl, which inherits from ElementNSImpl, does.
See Also: DeferredElementNSImpl since: PR-DOM-Level-1-19980818. |
fNodeIndex | protected transient int fNodeIndex(Code) | | Node index.
|
serialVersionUID | final static long serialVersionUID(Code) | | Serialization version.
|
DeferredElementImpl | DeferredElementImpl(DeferredDocumentImpl ownerDoc, int nodeIndex)(Code) | | This is the deferred constructor. Only the fNodeIndex is given here. All
other data, can be requested from the ownerDocument via the index.
|
getNodeIndex | final public int getNodeIndex()(Code) | | Returns the node index.
|
synchronizeChildren | final protected void synchronizeChildren()(Code) | | |
synchronizeData | final protected void synchronizeData()(Code) | | Synchronizes the data (name and value) for fast nodes.
|
|
|