| java.lang.Object org.apache.xerces.dom.NodeImpl org.apache.xerces.dom.ChildNode org.apache.xerces.dom.ParentNode org.apache.xerces.dom.CoreDocumentImpl org.apache.xerces.dom.DocumentImpl org.apache.xerces.dom.DeferredDocumentImpl
DeferredDocumentImpl | public class DeferredDocumentImpl extends DocumentImpl implements DeferredNode(Code) | | The Document interface represents the entire HTML or XML document.
Conceptually, it is the root of the document tree, and provides the
primary access to the document's data.
Since elements, text nodes, comments, processing instructions,
etc. cannot exist outside the context of a Document, the Document
interface also contains the factory methods needed to create these
objects. The Node objects created have a ownerDocument attribute
which associates them with the Document within whose context they
were created.
version: $Id: DeferredDocumentImpl.java 511134 2007-02-23 22:08:04Z mrglavas $ since: PR-DOM-Level-1-19980818. |
Inner Class :final static class RefCount | |
Inner Class :final static class IntVector | |
Constructor Summary | |
public | DeferredDocumentImpl() NON-DOM: Actually creating a Document is outside the DOM's spec,
since it has to operate in terms of a particular implementation. | public | DeferredDocumentImpl(boolean namespacesEnabled) NON-DOM: Actually creating a Document is outside the DOM's spec,
since it has to operate in terms of a particular implementation. | public | DeferredDocumentImpl(boolean namespaces, boolean grammarAccess) Experimental constructor. |
Method Summary | |
public void | appendChild(int parentIndex, int childIndex) Appends a child to the specified parent in the table. | protected static int | binarySearch(int values, int start, int end, int target) Performs a binary search for a target value in an array of
values. | public int | cloneNode(int nodeIndex, boolean deep) Creates a clone of the specified node. | public int | createDeferredAttribute(String attrName, String attrValue, boolean specified) Creates an attribute in the table. | public int | createDeferredAttribute(String attrName, String attrURI, String attrValue, boolean specified) Creates an attribute with a URI in the table. | public int | createDeferredCDATASection(String data) Creates a CDATA section node in the table. | public int | createDeferredComment(String data) Creates a comment node in the table. | public int | createDeferredDocument() Creates a document node in the table. | public int | createDeferredDocumentType(String rootElementName, String publicId, String systemId) Creates a doctype. | public int | createDeferredElement(String elementURI, String elementName, Object type) Creates an element node with a URI in the table and type information. | public int | createDeferredElement(String elementName) Creates an element node in the table. | public int | createDeferredElement(String elementURI, String elementName) Creates an element node with a URI in the table. | public int | createDeferredElementDefinition(String elementName) Creates an element definition in the table. | public int | createDeferredEntity(String entityName, String publicId, String systemId, String notationName, String baseURI) Creates an entity in the table. | public int | createDeferredEntityReference(String name, String baseURI) Creates an entity reference node in the table. | public int | createDeferredNotation(String notationName, String publicId, String systemId, String baseURI) Creates a notation in the table. | public int | createDeferredProcessingInstruction(String target, String data) Creates a processing instruction node in the table. | public int | createDeferredTextNode(String data, boolean ignorableWhitespace) Creates a text node in the table. | protected int | createNode(short nodeType) Creates a node of the specified type. | protected void | ensureCapacity(int chunk) Ensures that the internal tables are large enough. | public String | getAttribute(int elemIndex, String name) Returns the attribute value of the given name. | public String | getDeferredEntityBaseURI(int entityIndex) | public DOMImplementation | getImplementation() Retrieve information describing the abilities of this particular
DOM implementation. | public int | getLastChild(int nodeIndex) Returns the last child of the given node. | public int | getLastChild(int nodeIndex, boolean free) Returns the last child of the given node. | boolean | getNamespacesEnabled() Returns the cached parser.getNamespaces() value. | public int | getNodeExtra(int nodeIndex) Returns the extra info of the given node. | public int | getNodeExtra(int nodeIndex, boolean free) Returns the extra info of the given node. | public int | getNodeIndex() Returns the node index. | public String | getNodeName(int nodeIndex) Returns the name of the given node. | public String | getNodeName(int nodeIndex, boolean free) Returns the name of the given node. | public DeferredNode | getNodeObject(int nodeIndex) Instantiates the requested node object. | public short | getNodeType(int nodeIndex) Returns the type of the given node. | public short | getNodeType(int nodeIndex, boolean free) Returns the type of the given node. | public String | getNodeURI(int nodeIndex) Returns the URI of the given node. | public String | getNodeURI(int nodeIndex, boolean free) Returns the URI of the given node. | public String | getNodeValue(int nodeIndex) Returns the value of the given node. | public String | getNodeValue(int nodeIndex, boolean free) Returns the value of the given node. | public String | getNodeValueString(int nodeIndex) Returns the real value of the given node. | public String | getNodeValueString(int nodeIndex, boolean free) Returns the real value of the given node. | public int | getParentNode(int nodeIndex) Returns the parent node of the given node. | public int | getParentNode(int nodeIndex, boolean free) Returns the parent node of the given node. | public int | getPrevSibling(int nodeIndex) Returns the prev sibling of the given node. | public int | getPrevSibling(int nodeIndex, boolean free) Returns the prev sibling of the given node. | public int | getRealPrevSibling(int nodeIndex) Returns the real prev sibling of the given node,
directly from the data structures. | public int | getRealPrevSibling(int nodeIndex, boolean free) Returns the real prev sibling of the given node. | public Object | getTypeInfo(int nodeIndex) | public int | insertBefore(int parentIndex, int newChildIndex, int refChildIndex) Inserts a child before the specified node in the table. | public int | lookupElementDefinition(String elementName) Returns the index of the element definition in the table
with the specified name index, or -1 if no such definition
exists. | public void | print() Prints out the tables. | public void | putIdentifier(String name, int elementNodeIndex) Registers an identifier name with a specified element node. | public void | setAsLastChild(int parentIndex, int childIndex) Sets the last child of the parentIndex to childIndex. | public int | setAttributeNode(int elemIndex, int attrIndex) Adds an attribute node to the specified element. | public int | setDeferredAttribute(int elementNodeIndex, String attrName, String attrURI, String attrValue, boolean specified, boolean id, Object type) This method is used by the DOMParser to create attributes. | public int | setDeferredAttribute(int elementNodeIndex, String attrName, String attrURI, String attrValue, boolean specified) Sets an attribute on an element node. | public void | setEntityInfo(int currentEntityDecl, String version, String encoding) | public void | setIdAttribute(int attrIndex) | public void | setIdAttributeNode(int elemIndex, int attrIndex) Adds an attribute node to the specified element. | public void | setInputEncoding(int currentEntityDecl, String value) DOM Internal
An attribute specifying the actual encoding of this document. | public void | setInternalSubset(int doctypeIndex, String subset) | void | setNamespacesEnabled(boolean enable) | public void | setTypeInfo(int elementNodeIndex, Object type) | protected void | synchronizeChildren() Synchronizes the node's children with the internal structure.
Fluffing the children at once solves a lot of work to keep
the two structures in sync. | final protected void | synchronizeChildren(AttrImpl a, int nodeIndex) Synchronizes the node's children with the internal structure.
Fluffing the children at once solves a lot of work to keep
the two structures in sync. | final protected void | synchronizeChildren(ParentNode p, int nodeIndex) Synchronizes the node's children with the internal structure.
Fluffing the children at once solves a lot of work to keep
the two structures in sync. | protected void | synchronizeData() Synchronizes the node's data. |
CHUNK_MASK | final protected static int CHUNK_MASK(Code) | | Chunk mask.
|
CHUNK_SHIFT | final protected static int CHUNK_SHIFT(Code) | | Chunk shift.
|
CHUNK_SIZE | final protected static int CHUNK_SIZE(Code) | | Chunk size.
|
INITIAL_CHUNK_COUNT | final protected static int INITIAL_CHUNK_COUNT(Code) | | Initial chunk size.
|
fIdCount | protected transient int fIdCount(Code) | | Identifier count.
|
fIdElement | protected transient int fIdElement(Code) | | Identifier element indexes.
|
fIdName | protected transient String fIdName(Code) | | Identifier name indexes.
|
fNamespacesEnabled | protected boolean fNamespacesEnabled(Code) | | DOM2: For namespace support in the deferred case.
|
fNodeCount | protected transient int fNodeCount(Code) | | Node count.
|
fNodeExtra | protected transient int fNodeExtra(Code) | | Extra data.
|
fNodeLastChild | protected transient int fNodeLastChild(Code) | | Node first children.
|
fNodeName | protected transient Object fNodeName(Code) | | Node names.
|
fNodeParent | protected transient int fNodeParent(Code) | | Node parents.
|
fNodePrevSib | protected transient int fNodePrevSib(Code) | | Node prev siblings.
|
fNodeType | protected transient int fNodeType(Code) | | Node types.
|
fNodeURI | protected transient Object fNodeURI(Code) | | Node namespace URI.
|
fNodeValue | protected transient Object fNodeValue(Code) | | Node values.
|
serialVersionUID | final static long serialVersionUID(Code) | | Serialization version.
|
DeferredDocumentImpl | public DeferredDocumentImpl()(Code) | | NON-DOM: Actually creating a Document is outside the DOM's spec,
since it has to operate in terms of a particular implementation.
|
DeferredDocumentImpl | public DeferredDocumentImpl(boolean namespacesEnabled)(Code) | | NON-DOM: Actually creating a Document is outside the DOM's spec,
since it has to operate in terms of a particular implementation.
|
DeferredDocumentImpl | public DeferredDocumentImpl(boolean namespaces, boolean grammarAccess)(Code) | | Experimental constructor.
|
appendChild | public void appendChild(int parentIndex, int childIndex)(Code) | | Appends a child to the specified parent in the table.
|
binarySearch | protected static int binarySearch(int values, int start, int end, int target)(Code) | | Performs a binary search for a target value in an array of
values. The array of values must be in ascending sorted order
before calling this method and all array values must be
non-negative.
Parameters: values - The array of values to search. Parameters: start - The starting offset of the search. Parameters: end - The ending offset of the search. Parameters: target - The target value. This function will return the first occurrenceof the target value, or -1 if the target value cannotbe found. |
cloneNode | public int cloneNode(int nodeIndex, boolean deep)(Code) | | Creates a clone of the specified node.
|
createDeferredAttribute | public int createDeferredAttribute(String attrName, String attrValue, boolean specified)(Code) | | Creates an attribute in the table.
|
createDeferredAttribute | public int createDeferredAttribute(String attrName, String attrURI, String attrValue, boolean specified)(Code) | | Creates an attribute with a URI in the table.
|
createDeferredCDATASection | public int createDeferredCDATASection(String data)(Code) | | Creates a CDATA section node in the table.
|
createDeferredComment | public int createDeferredComment(String data)(Code) | | Creates a comment node in the table.
|
createDeferredDocument | public int createDeferredDocument()(Code) | | Creates a document node in the table.
|
createDeferredDocumentType | public int createDeferredDocumentType(String rootElementName, String publicId, String systemId)(Code) | | Creates a doctype.
|
createDeferredElement | public int createDeferredElement(String elementURI, String elementName, Object type)(Code) | | Creates an element node with a URI in the table and type information.
|
createDeferredElement | public int createDeferredElement(String elementName)(Code) | | Creates an element node in the table.
|
createDeferredElement | public int createDeferredElement(String elementURI, String elementName)(Code) | | Creates an element node with a URI in the table.
|
createDeferredElementDefinition | public int createDeferredElementDefinition(String elementName)(Code) | | Creates an element definition in the table.
|
createDeferredEntityReference | public int createDeferredEntityReference(String name, String baseURI)(Code) | | Creates an entity reference node in the table.
|
createDeferredNotation | public int createDeferredNotation(String notationName, String publicId, String systemId, String baseURI)(Code) | | Creates a notation in the table.
|
createDeferredProcessingInstruction | public int createDeferredProcessingInstruction(String target, String data)(Code) | | Creates a processing instruction node in the table.
|
createDeferredTextNode | public int createDeferredTextNode(String data, boolean ignorableWhitespace)(Code) | | Creates a text node in the table.
|
createNode | protected int createNode(short nodeType)(Code) | | Creates a node of the specified type.
|
ensureCapacity | protected void ensureCapacity(int chunk)(Code) | | Ensures that the internal tables are large enough.
|
getAttribute | public String getAttribute(int elemIndex, String name)(Code) | | Returns the attribute value of the given name.
|
getDeferredEntityBaseURI | public String getDeferredEntityBaseURI(int entityIndex)(Code) | | |
getImplementation | public DOMImplementation getImplementation()(Code) | | Retrieve information describing the abilities of this particular
DOM implementation. Intended to support applications that may be
using DOMs retrieved from several different sources, potentially
with different underlying representations.
|
getLastChild | public int getLastChild(int nodeIndex)(Code) | | Returns the last child of the given node.
|
getLastChild | public int getLastChild(int nodeIndex, boolean free)(Code) | | Returns the last child of the given node.
Parameters: free - True to free child index. |
getNamespacesEnabled | boolean getNamespacesEnabled()(Code) | | Returns the cached parser.getNamespaces() value.
|
getNodeExtra | public int getNodeExtra(int nodeIndex)(Code) | | Returns the extra info of the given node.
Used by AttrImpl to store specified value (1 == true).
|
getNodeExtra | public int getNodeExtra(int nodeIndex, boolean free)(Code) | | Returns the extra info of the given node.
Parameters: free - True to free the value index. |
getNodeIndex | public int getNodeIndex()(Code) | | Returns the node index.
|
getNodeName | public String getNodeName(int nodeIndex)(Code) | | Returns the name of the given node.
|
getNodeName | public String getNodeName(int nodeIndex, boolean free)(Code) | | Returns the name of the given node.
Parameters: free - True to free the string index. |
getNodeObject | public DeferredNode getNodeObject(int nodeIndex)(Code) | | Instantiates the requested node object.
|
getNodeType | public short getNodeType(int nodeIndex)(Code) | | Returns the type of the given node.
|
getNodeType | public short getNodeType(int nodeIndex, boolean free)(Code) | | Returns the type of the given node.
Parameters: free - True to free type index. |
getNodeURI | public String getNodeURI(int nodeIndex)(Code) | | Returns the URI of the given node.
|
getNodeURI | public String getNodeURI(int nodeIndex, boolean free)(Code) | | Returns the URI of the given node.
Parameters: free - True to free URI index. |
getNodeValue | public String getNodeValue(int nodeIndex)(Code) | | Returns the value of the given node.
|
getNodeValue | public String getNodeValue(int nodeIndex, boolean free)(Code) | | Returns the value of the given node.
Parameters: free - True to free the value index. |
getNodeValueString | public String getNodeValueString(int nodeIndex)(Code) | | Returns the real value of the given node.
|
getNodeValueString | public String getNodeValueString(int nodeIndex, boolean free)(Code) | | Returns the real value of the given node.
Parameters: free - True to free the string index. |
getParentNode | public int getParentNode(int nodeIndex)(Code) | | Returns the parent node of the given node.
Calling this method does not free the parent index.
|
getParentNode | public int getParentNode(int nodeIndex, boolean free)(Code) | | Returns the parent node of the given node.
Parameters: free - True to free parent node. |
getPrevSibling | public int getPrevSibling(int nodeIndex)(Code) | | Returns the prev sibling of the given node.
This is post-normalization of Text Nodes.
|
getPrevSibling | public int getPrevSibling(int nodeIndex, boolean free)(Code) | | Returns the prev sibling of the given node.
Parameters: free - True to free sibling index. |
getRealPrevSibling | public int getRealPrevSibling(int nodeIndex)(Code) | | Returns the real prev sibling of the given node,
directly from the data structures. Used by TextImpl#getNodeValue()
to normalize values.
|
getRealPrevSibling | public int getRealPrevSibling(int nodeIndex, boolean free)(Code) | | Returns the real prev sibling of the given node.
Parameters: free - True to free sibling index. |
getTypeInfo | public Object getTypeInfo(int nodeIndex)(Code) | | Clears the type info that is stored in the fNodeValue array
Parameters: nodeIndex - Object - type information for the attribute/element node |
insertBefore | public int insertBefore(int parentIndex, int newChildIndex, int refChildIndex)(Code) | | Inserts a child before the specified node in the table.
|
lookupElementDefinition | public int lookupElementDefinition(String elementName)(Code) | | Returns the index of the element definition in the table
with the specified name index, or -1 if no such definition
exists.
|
print | public void print()(Code) | | Prints out the tables.
|
putIdentifier | public void putIdentifier(String name, int elementNodeIndex)(Code) | | Registers an identifier name with a specified element node.
|
setAsLastChild | public void setAsLastChild(int parentIndex, int childIndex)(Code) | | Sets the last child of the parentIndex to childIndex.
|
setAttributeNode | public int setAttributeNode(int elemIndex, int attrIndex)(Code) | | Adds an attribute node to the specified element.
|
setDeferredAttribute | public int setDeferredAttribute(int elementNodeIndex, String attrName, String attrURI, String attrValue, boolean specified, boolean id, Object type)(Code) | | This method is used by the DOMParser to create attributes.
Parameters: elementNodeIndex - Parameters: attrName - Parameters: attrURI - Parameters: attrValue - Parameters: specified - Parameters: id - Parameters: type - int |
setDeferredAttribute | public int setDeferredAttribute(int elementNodeIndex, String attrName, String attrURI, String attrValue, boolean specified)(Code) | | Sets an attribute on an element node.
|
setEntityInfo | public void setEntityInfo(int currentEntityDecl, String version, String encoding)(Code) | | |
setIdAttribute | public void setIdAttribute(int attrIndex)(Code) | | Sets type of attribute
|
setIdAttributeNode | public void setIdAttributeNode(int elemIndex, int attrIndex)(Code) | | Adds an attribute node to the specified element.
|
setInputEncoding | public void setInputEncoding(int currentEntityDecl, String value)(Code) | | DOM Internal
An attribute specifying the actual encoding of this document. This is
null otherwise.
This attribute represents the property [character encoding scheme]
defined in .
|
setInternalSubset | public void setInternalSubset(int doctypeIndex, String subset)(Code) | | |
setNamespacesEnabled | void setNamespacesEnabled(boolean enable)(Code) | | |
setTypeInfo | public void setTypeInfo(int elementNodeIndex, Object type)(Code) | | |
synchronizeChildren | protected void synchronizeChildren()(Code) | | Synchronizes the node's children with the internal structure.
Fluffing the children at once solves a lot of work to keep
the two structures in sync. The problem gets worse when
editing the tree -- this makes it a lot easier.
|
synchronizeChildren | final protected void synchronizeChildren(AttrImpl a, int nodeIndex)(Code) | | Synchronizes the node's children with the internal structure.
Fluffing the children at once solves a lot of work to keep
the two structures in sync. The problem gets worse when
editing the tree -- this makes it a lot easier.
This is not directly used in this class but this method is
here so that it can be shared by all deferred subclasses of AttrImpl.
|
synchronizeChildren | final protected void synchronizeChildren(ParentNode p, int nodeIndex)(Code) | | Synchronizes the node's children with the internal structure.
Fluffing the children at once solves a lot of work to keep
the two structures in sync. The problem gets worse when
editing the tree -- this makes it a lot easier.
This is not directly used in this class but this method is
here so that it can be shared by all deferred subclasses of ParentNode.
|
synchronizeData | protected void synchronizeData()(Code) | | Synchronizes the node's data.
|
Methods inherited from org.apache.xerces.dom.DocumentImpl | protected void addEventListener(NodeImpl node, String type, EventListener listener, boolean useCapture)(Code)(Java Doc) public Node cloneNode(boolean deep)(Code)(Java Doc) protected void copyEventListeners(NodeImpl src, NodeImpl tgt)(Code)(Java Doc) public Event createEvent(String type) throws DOMException(Code)(Java Doc) public NodeIterator createNodeIterator(Node root, short whatToShow, NodeFilter filter)(Code)(Java Doc) public NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion)(Code)(Java Doc) public Range createRange()(Code)(Java Doc) public TreeWalker createTreeWalker(Node root, short whatToShow, NodeFilter filter)(Code)(Java Doc) public TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion)(Code)(Java Doc) void deletedText(CharacterDataImpl node, int offset, int count)(Code)(Java Doc) protected void dispatchAggregateEvents(NodeImpl node, EnclosingAttr ea)(Code)(Java Doc) protected void dispatchAggregateEvents(NodeImpl node, AttrImpl enclosingAttr, String oldvalue, short change)(Code)(Java Doc) protected boolean dispatchEvent(NodeImpl node, Event event)(Code)(Java Doc) protected void dispatchEventToSubtree(Node n, Event e)(Code)(Java Doc) protected void dispatchingEventToSubtree(Node n, Event e)(Code)(Java Doc) protected Vector getEventListeners(NodeImpl n)(Code)(Java Doc) public DOMImplementation getImplementation()(Code)(Java Doc) boolean getMutationEvents()(Code)(Java Doc) void insertedNode(NodeImpl node, NodeImpl newInternal, boolean replace)(Code)(Java Doc) void insertedText(CharacterDataImpl node, int offset, int count)(Code)(Java Doc) void insertingNode(NodeImpl node, boolean replace)(Code)(Java Doc) void modifiedAttrValue(AttrImpl attr, String oldvalue)(Code)(Java Doc) void modifiedCharacterData(NodeImpl node, String oldvalue, String value, boolean replace)(Code)(Java Doc) void modifyingCharacterData(NodeImpl node, boolean replace)(Code)(Java Doc) protected void removeEventListener(NodeImpl node, String type, EventListener listener, boolean useCapture)(Code)(Java Doc) void removeNodeIterator(NodeIterator nodeIterator)(Code)(Java Doc) void removeRange(Range range)(Code)(Java Doc) void removedAttrNode(AttrImpl attr, NodeImpl oldOwner, String name)(Code)(Java Doc) void removedNode(NodeImpl node, boolean replace)(Code)(Java Doc) void removingNode(NodeImpl node, NodeImpl oldChild, boolean replace)(Code)(Java Doc) void renamedAttrNode(Attr oldAt, Attr newAt)(Code)(Java Doc) void renamedElement(Element oldEl, Element newEl)(Code)(Java Doc) void replacedCharacterData(NodeImpl node, String oldvalue, String value)(Code)(Java Doc) void replacedNode(NodeImpl node)(Code)(Java Doc) void replacedText(CharacterDataImpl node)(Code)(Java Doc) void replacingData(NodeImpl node)(Code)(Java Doc) void replacingNode(NodeImpl node)(Code)(Java Doc) protected void saveEnclosingAttr(NodeImpl node)(Code)(Java Doc) void setAttrNode(AttrImpl attr, AttrImpl previous)(Code)(Java Doc) protected void setEventListeners(NodeImpl n, Vector listeners)(Code)(Java Doc) void setMutationEvents(boolean set)(Code)(Java Doc) void splitData(Node node, Node newNode, int offset)(Code)(Java Doc)
|
Methods inherited from org.apache.xerces.dom.CoreDocumentImpl | public void abort()(Code)(Java Doc) protected void addEventListener(NodeImpl node, String type, EventListener listener, boolean useCapture)(Code)(Java Doc) public Node adoptNode(Node source)(Code)(Java Doc) protected void callUserDataHandlers(Node n, Node c, short operation)(Code)(Java Doc) void callUserDataHandlers(Node n, Node c, short operation, Hashtable userData)(Code)(Java Doc) protected void changed()(Code)(Java Doc) protected int changes()(Code)(Java Doc) final protected void checkDOMNSErr(String prefix, String namespace)(Code)(Java Doc) final protected void checkNamespaceWF(String qname, int colon1, int colon2)(Code)(Java Doc) final protected void checkQName(String prefix, String local)(Code)(Java Doc) final protected void clearIdentifiers()(Code)(Java Doc) public Object clone() throws CloneNotSupportedException(Code)(Java Doc) public Node cloneNode(boolean deep)(Code)(Java Doc) protected void cloneNode(CoreDocumentImpl newdoc, boolean deep)(Code)(Java Doc) protected void copyEventListeners(NodeImpl src, NodeImpl tgt)(Code)(Java Doc) public Attr createAttribute(String name) throws DOMException(Code)(Java Doc) public Attr createAttributeNS(String namespaceURI, String qualifiedName) throws DOMException(Code)(Java Doc) public Attr createAttributeNS(String namespaceURI, String qualifiedName, String localpart) throws DOMException(Code)(Java Doc) public CDATASection createCDATASection(String data) throws DOMException(Code)(Java Doc) public Comment createComment(String data)(Code)(Java Doc) public DocumentFragment createDocumentFragment()(Code)(Java Doc) public DocumentType createDocumentType(String qualifiedName, String publicID, String systemID) throws DOMException(Code)(Java Doc) public Element createElement(String tagName) throws DOMException(Code)(Java Doc) public ElementDefinitionImpl createElementDefinition(String name) throws DOMException(Code)(Java Doc) public Element createElementNS(String namespaceURI, String qualifiedName) throws DOMException(Code)(Java Doc) public Element createElementNS(String namespaceURI, String qualifiedName, String localpart) throws DOMException(Code)(Java Doc) public Entity createEntity(String name) throws DOMException(Code)(Java Doc) public EntityReference createEntityReference(String name) throws DOMException(Code)(Java Doc) public Notation createNotation(String name) throws DOMException(Code)(Java Doc) public ProcessingInstruction createProcessingInstruction(String target, String data) throws DOMException(Code)(Java Doc) public Text createTextNode(String data)(Code)(Java Doc) void deletedText(CharacterDataImpl node, int offset, int count)(Code)(Java Doc) protected boolean dispatchEvent(NodeImpl node, Event event)(Code)(Java Doc) void freeNodeListCache(NodeListCache c)(Code)(Java Doc) public boolean getAsync()(Code)(Java Doc) public String getBaseURI()(Code)(Java Doc) public DocumentType getDoctype()(Code)(Java Doc) public Element getDocumentElement()(Code)(Java Doc) public String getDocumentURI()(Code)(Java Doc) public DOMConfiguration getDomConfig()(Code)(Java Doc) public Element getElementById(String elementId)(Code)(Java Doc) public NodeList getElementsByTagName(String tagname)(Code)(Java Doc) public NodeList getElementsByTagNameNS(String namespaceURI, String localName)(Code)(Java Doc) public String getEncoding()(Code)(Java Doc) public boolean getErrorChecking()(Code)(Java Doc) public Object getFeature(String feature, String version)(Code)(Java Doc) public Element getIdentifier(String idName)(Code)(Java Doc) public Enumeration getIdentifiers()(Code)(Java Doc) public DOMImplementation getImplementation()(Code)(Java Doc) public String getInputEncoding()(Code)(Java Doc) boolean getMutationEvents()(Code)(Java Doc) NodeListCache getNodeListCache(ParentNode owner)(Code)(Java Doc) public String getNodeName()(Code)(Java Doc) protected int getNodeNumber()(Code)(Java Doc) protected int getNodeNumber(Node node)(Code)(Java Doc) public short getNodeType()(Code)(Java Doc) final public Document getOwnerDocument()(Code)(Java Doc) public boolean getStandalone()(Code)(Java Doc) public boolean getStrictErrorChecking()(Code)(Java Doc) public String getTextContent() throws DOMException(Code)(Java Doc) public Object getUserData(Node n, String key)(Code)(Java Doc) protected Object getUserData(NodeImpl n)(Code)(Java Doc) protected Hashtable getUserDataRecord(Node n)(Code)(Java Doc) public String getVersion()(Code)(Java Doc) public String getXmlEncoding()(Code)(Java Doc) public boolean getXmlStandalone()(Code)(Java Doc) public String getXmlVersion()(Code)(Java Doc) public Node importNode(Node source, boolean deep) throws DOMException(Code)(Java Doc) public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc) void insertedNode(NodeImpl node, NodeImpl newInternal, boolean replace)(Code)(Java Doc) void insertedText(CharacterDataImpl node, int offset, int count)(Code)(Java Doc) void insertingNode(NodeImpl node, boolean replace)(Code)(Java Doc) protected boolean isKidOK(Node parent, Node child)(Code)(Java Doc) boolean isNormalizeDocRequired()(Code)(Java Doc) final public static boolean isValidQName(String prefix, String local, boolean xml11Version)(Code)(Java Doc) boolean isXML11Version()(Code)(Java Doc) final public static boolean isXMLName(String s, boolean xml11Version)(Code)(Java Doc) boolean isXMLVersionChanged()(Code)(Java Doc) public boolean load(String uri)(Code)(Java Doc) public boolean loadXML(String source)(Code)(Java Doc) void modifiedAttrValue(AttrImpl attr, String oldvalue)(Code)(Java Doc) void modifiedCharacterData(NodeImpl node, String oldvalue, String value, boolean replace)(Code)(Java Doc) void modifyingCharacterData(NodeImpl node, boolean replace)(Code)(Java Doc) public void normalizeDocument()(Code)(Java Doc) public void putIdentifier(String idName, Element element)(Code)(Java Doc) public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc) protected void removeEventListener(NodeImpl node, String type, EventListener listener, boolean useCapture)(Code)(Java Doc) public void removeIdentifier(String idName)(Code)(Java Doc) Hashtable removeUserDataTable(Node n)(Code)(Java Doc) void removedAttrNode(AttrImpl attr, NodeImpl oldOwner, String name)(Code)(Java Doc) void removedNode(NodeImpl node, boolean replace)(Code)(Java Doc) void removingNode(NodeImpl node, NodeImpl oldChild, boolean replace)(Code)(Java Doc) public Node renameNode(Node n, String namespaceURI, String name) throws DOMException(Code)(Java Doc) void renamedAttrNode(Attr oldAt, Attr newAt)(Code)(Java Doc) void renamedElement(Element oldEl, Element newEl)(Code)(Java Doc) public Node replaceChild(Node newChild, Node oldChild) throws DOMException(Code)(Java Doc) void replacedCharacterData(NodeImpl node, String oldvalue, String value)(Code)(Java Doc) void replacedNode(NodeImpl node)(Code)(Java Doc) void replacedText(CharacterDataImpl node)(Code)(Java Doc) void replacingData(NodeImpl node)(Code)(Java Doc) void replacingNode(NodeImpl node)(Code)(Java Doc) public String saveXML(Node node) throws DOMException(Code)(Java Doc) public void setAsync(boolean async)(Code)(Java Doc) void setAttrNode(AttrImpl attr, AttrImpl previous)(Code)(Java Doc) public void setDocumentURI(String documentURI)(Code)(Java Doc) public void setEncoding(String value)(Code)(Java Doc) public void setErrorChecking(boolean check)(Code)(Java Doc) public void setInputEncoding(String value)(Code)(Java Doc) void setMutationEvents(boolean set)(Code)(Java Doc) public void setStandalone(boolean value)(Code)(Java Doc) public void setStrictErrorChecking(boolean check)(Code)(Java Doc) public void setTextContent(String textContent) throws DOMException(Code)(Java Doc) public Object setUserData(Node n, String key, Object data, UserDataHandler handler)(Code)(Java Doc) protected void setUserData(NodeImpl n, Object data)(Code)(Java Doc) void setUserDataTable(Node n, Hashtable data)(Code)(Java Doc) public void setVersion(String value)(Code)(Java Doc) public void setXmlEncoding(String value)(Code)(Java Doc) public void setXmlStandalone(boolean value) throws DOMException(Code)(Java Doc) public void setXmlVersion(String value)(Code)(Java Doc) protected void undeferChildren(Node node)(Code)(Java Doc)
|
Methods inherited from org.apache.xerces.dom.NodeImpl | public void addEventListener(String type, EventListener listener, boolean useCapture)(Code)(Java Doc) public Node appendChild(Node newChild) throws DOMException(Code)(Java Doc) protected void changed()(Code)(Java Doc) protected int changes()(Code)(Java Doc) public Node cloneNode(boolean deep)(Code)(Java Doc) public short compareDocumentPosition(Node other) throws DOMException(Code)(Java Doc) public short compareTreePosition(Node other)(Code)(Java Doc) public boolean dispatchEvent(Event event)(Code)(Java Doc) public NamedNodeMap getAttributes()(Code)(Java Doc) public String getBaseURI()(Code)(Java Doc) public NodeList getChildNodes()(Code)(Java Doc) protected Node getContainer()(Code)(Java Doc) Node getElementAncestor(Node currentNode)(Code)(Java Doc) public Object getFeature(String feature, String version)(Code)(Java Doc) public Node getFirstChild()(Code)(Java Doc) public Node getLastChild()(Code)(Java Doc) public int getLength()(Code)(Java Doc) public String getLocalName()(Code)(Java Doc) public String getNamespaceURI()(Code)(Java Doc) public Node getNextSibling()(Code)(Java Doc) abstract public String getNodeName()(Code)(Java Doc) protected int getNodeNumber()(Code)(Java Doc) abstract public short getNodeType()(Code)(Java Doc) public String getNodeValue() throws DOMException(Code)(Java Doc) public Document getOwnerDocument()(Code)(Java Doc) public Node getParentNode()(Code)(Java Doc) public String getPrefix()(Code)(Java Doc) public Node getPreviousSibling()(Code)(Java Doc) public boolean getReadOnly()(Code)(Java Doc) public String getTextContent() throws DOMException(Code)(Java Doc) void getTextContent(StringBuffer buf) throws DOMException(Code)(Java Doc) public Object getUserData(String key)(Code)(Java Doc) public Object getUserData()(Code)(Java Doc) protected Hashtable getUserDataRecord()(Code)(Java Doc) public boolean hasAttributes()(Code)(Java Doc) public boolean hasChildNodes()(Code)(Java Doc) final boolean hasStringValue()(Code)(Java Doc) final void hasStringValue(boolean value)(Code)(Java Doc) public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc) final boolean internalIsIgnorableWhitespace()(Code)(Java Doc) public boolean isDefaultNamespace(String namespaceURI)(Code)(Java Doc) public boolean isEqualNode(Node arg)(Code)(Java Doc) final boolean isFirstChild()(Code)(Java Doc) final void isFirstChild(boolean value)(Code)(Java Doc) final boolean isIdAttribute()(Code)(Java Doc) final void isIdAttribute(boolean value)(Code)(Java Doc) final void isIgnorableWhitespace(boolean value)(Code)(Java Doc) final boolean isNormalized()(Code)(Java Doc) final void isNormalized(boolean value)(Code)(Java Doc) final boolean isOwned()(Code)(Java Doc) final void isOwned(boolean value)(Code)(Java Doc) final boolean isReadOnly()(Code)(Java Doc) final void isReadOnly(boolean value)(Code)(Java Doc) public boolean isSameNode(Node other)(Code)(Java Doc) final boolean isSpecified()(Code)(Java Doc) final void isSpecified(boolean value)(Code)(Java Doc) public boolean isSupported(String feature, String version)(Code)(Java Doc) public Node item(int index)(Code)(Java Doc) String lookupNamespacePrefix(String namespaceURI, ElementImpl el)(Code)(Java Doc) public String lookupNamespaceURI(String specifiedPrefix)(Code)(Java Doc) public String lookupPrefix(String namespaceURI)(Code)(Java Doc) final boolean needsSyncChildren()(Code)(Java Doc) final public void needsSyncChildren(boolean value)(Code)(Java Doc) final boolean needsSyncData()(Code)(Java Doc) final void needsSyncData(boolean value)(Code)(Java Doc) public void normalize()(Code)(Java Doc) CoreDocumentImpl ownerDocument()(Code)(Java Doc) NodeImpl parentNode()(Code)(Java Doc) ChildNode previousSibling()(Code)(Java Doc) public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc) public void removeEventListener(String type, EventListener listener, boolean useCapture)(Code)(Java Doc) public Node replaceChild(Node newChild, Node oldChild) throws DOMException(Code)(Java Doc) public void setNodeValue(String x) throws DOMException(Code)(Java Doc) protected void setOwnerDocument(CoreDocumentImpl doc)(Code)(Java Doc) public void setPrefix(String prefix) throws DOMException(Code)(Java Doc) public void setReadOnly(boolean readOnly, boolean deep)(Code)(Java Doc) public void setTextContent(String textContent) throws DOMException(Code)(Java Doc) public Object setUserData(String key, Object data, UserDataHandler handler)(Code)(Java Doc) public void setUserData(Object data)(Code)(Java Doc) protected void synchronizeData()(Code)(Java Doc) public String toString()(Code)(Java Doc)
|
|
|