| 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.
since: PR-DOM-Level-1-19980818. |
Inner Class :static class IntVector | |
Constructor Summary | |
public | DeferredDocumentImpl(StringPool stringPool) 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(StringPool stringPool, 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(StringPool stringPool, 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 | createAttribute(int attrNameIndex, int attrValueIndex, boolean specified) Creates an attribute in the table. | public int | createAttribute(int attrNameIndex, int attrURIIndex, int attrValueIndex, boolean specified) Creates an attribute with a URI in the table. | public int | createCDATASection(int dataIndex, boolean ignorableWhitespace) Creates a CDATA section node in the table. | public int | createComment(int dataIndex) Creates a comment node in the table. | public int | createDocument() Creates a document node in the table. | public int | createDocumentType(int rootElementNameIndex, int publicId, int systemId) Creates a doctype. | public int | createElement(int elementNameIndex, XMLAttrList attrList, int attrListIndex) Creates an element node in the table. | public int | createElement(int elementNameIndex, int elementURIIndex, XMLAttrList attrList, int attrListIndex) Creates an element node with a URI in the table. | public int | createElementDefinition(int elementNameIndex) Creates an element definition in the table. | public int | createEntity(int entityName, int publicId, int systemId, int notationName) Creates an entity in the table. | public int | createEntityReference(int nameIndex) Creates an entity reference node in the table. | protected int | createNode(short nodeType) Creates a node of the specified type. | public int | createNotation(int notationName, int publicId, int systemId) Creates a notation in the table. | public int | createProcessingInstruction(int targetIndex, int dataIndex) Creates a processing instruction node in the table. | public int | createTextNode(int dataIndex, boolean ignorableWhitespace) Creates a text node in the table. | protected boolean | ensureCapacity(int chunk, int index) Ensures that the internal tables are large enough. | public int | getAttribute(int elemIndex, int nameIndex) Returns the attribute value of the given name. | 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 | getNodeIndex() Returns the node index. | public int | getNodeName(int nodeIndex) Returns the real int name of the given node. | public int | getNodeName(int nodeIndex, boolean free) Returns the real int name of the given node. | public String | getNodeNameString(int nodeIndex) Returns the name of the given node. | public String | getNodeNameString(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 short | getNodeURI(int nodeIndex) Returns the URI of the given node. | public short | getNodeURI(int nodeIndex, boolean free) Returns the URI of the given node. | public int | getNodeValue(int nodeIndex) Returns the real int value of the given node. | public int | getNodeValue(int nodeIndex, boolean free) Returns the real int value of the given node. | public String | getNodeValueString(int nodeIndex) Returns the value of the given node. | public String | getNodeValueString(int nodeIndex, boolean free) Returns the 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. | protected StringPool | getStringPool() access to string pool. | public int | insertBefore(int parentIndex, int newChildIndex, int refChildIndex) Inserts a child before the specified node in the table. | public int | lookupElementDefinition(int elementNameIndex) 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(int nameIndex, 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 void | setEntityInfo(int currentEntityDecl, int versionIndex, int encodingIndex) | public void | setInternalSubset(int doctypeIndex, int subsetIndex) | 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 int 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.
|
fNodeLastChild | protected transient int fNodeLastChild(Code) | | Node first children.
|
fNodeName | protected transient int 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 int fNodeURI(Code) | | Node namespace URI.
|
fNodeValue | protected transient int fNodeValue(Code) | | Node values.
|
serialVersionUID | final static long serialVersionUID(Code) | | Serialization version.
|
DeferredDocumentImpl | public DeferredDocumentImpl(StringPool stringPool)(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(StringPool stringPool, 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(StringPool stringPool, 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. |
createAttribute | public int createAttribute(int attrNameIndex, int attrValueIndex, boolean specified)(Code) | | Creates an attribute in the table.
|
createAttribute | public int createAttribute(int attrNameIndex, int attrURIIndex, int attrValueIndex, boolean specified)(Code) | | Creates an attribute with a URI in the table.
|
createCDATASection | public int createCDATASection(int dataIndex, boolean ignorableWhitespace)(Code) | | Creates a CDATA section node in the table.
|
createComment | public int createComment(int dataIndex)(Code) | | Creates a comment node in the table.
|
createDocument | public int createDocument()(Code) | | Creates a document node in the table.
|
createDocumentType | public int createDocumentType(int rootElementNameIndex, int publicId, int systemId)(Code) | | Creates a doctype.
|
createElement | public int createElement(int elementNameIndex, XMLAttrList attrList, int attrListIndex)(Code) | | Creates an element node in the table.
|
createElement | public int createElement(int elementNameIndex, int elementURIIndex, XMLAttrList attrList, int attrListIndex)(Code) | | Creates an element node with a URI in the table.
|
createElementDefinition | public int createElementDefinition(int elementNameIndex)(Code) | | Creates an element definition in the table.
|
createEntity | public int createEntity(int entityName, int publicId, int systemId, int notationName) throws Exception(Code) | | Creates an entity in the table.
|
createEntityReference | public int createEntityReference(int nameIndex) throws Exception(Code) | | Creates an entity reference node in the table.
|
createNode | protected int createNode(short nodeType)(Code) | | Creates a node of the specified type.
|
createNotation | public int createNotation(int notationName, int publicId, int systemId) throws Exception(Code) | | Creates a notation in the table.
|
createProcessingInstruction | public int createProcessingInstruction(int targetIndex, int dataIndex)(Code) | | Creates a processing instruction node in the table.
|
createTextNode | public int createTextNode(int dataIndex, boolean ignorableWhitespace)(Code) | | Creates a text node in the table.
|
ensureCapacity | protected boolean ensureCapacity(int chunk, int index)(Code) | | Ensures that the internal tables are large enough.
|
getAttribute | public int getAttribute(int elemIndex, int nameIndex)(Code) | | Returns the attribute value of the given name.
|
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.
|
getNodeIndex | public int getNodeIndex()(Code) | | Returns the node index.
|
getNodeName | public int getNodeName(int nodeIndex)(Code) | | Returns the real int name of the given node.
|
getNodeName | public int getNodeName(int nodeIndex, boolean free)(Code) | | Returns the real int name of the given node.
Parameters: free - True to free the name index. |
getNodeNameString | public String getNodeNameString(int nodeIndex)(Code) | | Returns the name of the given node.
|
getNodeNameString | public String getNodeNameString(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: True - to free type index. |
getNodeURI | public short getNodeURI(int nodeIndex)(Code) | | Returns the URI of the given node.
|
getNodeURI | public short getNodeURI(int nodeIndex, boolean free)(Code) | | Returns the URI of the given node.
Parameters: True - to free URI index. |
getNodeValue | public int getNodeValue(int nodeIndex)(Code) | | Returns the real int value of the given node.
Used by AttrImpl to store specified value (1 == true).
|
getNodeValue | public int getNodeValue(int nodeIndex, boolean free)(Code) | | Returns the real int value of the given node.
Parameters: free - True to free the value index. |
getNodeValueString | public String getNodeValueString(int nodeIndex)(Code) | | Returns the value of the given node.
|
getNodeValueString | public String getNodeValueString(int nodeIndex, boolean free)(Code) | | Returns the 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. |
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(int elementNameIndex)(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(int nameIndex, 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.
|
setEntityInfo | public void setEntityInfo(int currentEntityDecl, int versionIndex, int encodingIndex)(Code) | | |
setInternalSubset | public void setInternalSubset(int doctypeIndex, int subsetIndex)(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) 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(NodeImpl 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(NodeImpl node, 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) protected Object getUserData(NodeImpl n)(Code)(Java Doc) void insertedNode(NodeImpl node, NodeImpl newInternal, boolean replace)(Code)(Java Doc) void insertedText(NodeImpl 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)(Code)(Java Doc) void modifyingCharacterData(NodeImpl node)(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 replacedNode(NodeImpl node)(Code)(Java Doc) void replacedText(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) protected void setUserData(NodeImpl n, Object data)(Code)(Java Doc) void splitData(Node node, Node newNode, int offset)(Code)(Java Doc)
|
Methods inherited from org.apache.xerces.dom.CoreDocumentImpl | protected void addEventListener(NodeImpl node, String type, EventListener listener, boolean useCapture)(Code)(Java Doc) public Node adoptNode(Node source)(Code)(Java Doc) protected void changed()(Code)(Java Doc) protected int changes()(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) public Attr createAttribute(String name) throws DOMException(Code)(Java Doc) public Attr createAttributeNS(String namespaceURI, String qualifiedName) 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 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(NodeImpl node, int offset, int count)(Code)(Java Doc) protected boolean dispatchEvent(NodeImpl node, Event event)(Code)(Java Doc) public DocumentType getDoctype()(Code)(Java Doc) public Element getDocumentElement()(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 Element getIdentifier(String idName)(Code)(Java Doc) public Enumeration getIdentifiers()(Code)(Java Doc) public DOMImplementation getImplementation()(Code)(Java Doc) boolean getMutationEvents()(Code)(Java Doc) public String getNodeName()(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) protected Object getUserData(NodeImpl n)(Code)(Java Doc) public String getVersion()(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(NodeImpl 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) public static boolean isXMLName(String s)(Code)(Java Doc) void modifiedAttrValue(AttrImpl attr, String oldvalue)(Code)(Java Doc) void modifiedCharacterData(NodeImpl node, String oldvalue, String value)(Code)(Java Doc) void modifyingCharacterData(NodeImpl node)(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) 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 replaceChild(Node newChild, Node oldChild) throws DOMException(Code)(Java Doc) void replacedNode(NodeImpl node)(Code)(Java Doc) void replacedText(NodeImpl node)(Code)(Java Doc) void replacingNode(NodeImpl node)(Code)(Java Doc) void setAttrNode(AttrImpl attr, AttrImpl previous)(Code)(Java Doc) public void setEncoding(String value)(Code)(Java Doc) public void setErrorChecking(boolean check)(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) protected void setUserData(NodeImpl n, Object data)(Code)(Java Doc) public void setVersion(String value)(Code)(Java Doc)
|
|
|