Java Doc for DeferredDocumentImpl.java in  » XML » xerces-2_9_1 » org » apache » xerces » dom » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » xerces 2_9_1 » org.apache.xerces.dom 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


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

Field Summary
final protected static  intCHUNK_MASK
     Chunk mask.
final protected static  intCHUNK_SHIFT
     Chunk shift.
final protected static  intCHUNK_SIZE
     Chunk size.
final protected static  intINITIAL_CHUNK_COUNT
     Initial chunk size.
protected transient  intfIdCount
     Identifier count.
protected transient  intfIdElement
     Identifier element indexes.
protected transient  StringfIdName
     Identifier name indexes.
protected  booleanfNamespacesEnabled
     DOM2: For namespace support in the deferred case.
protected transient  intfNodeCount
     Node count.
protected transient  intfNodeExtra
     Extra data.
protected transient  intfNodeLastChild
     Node first children.
protected transient  ObjectfNodeName
     Node names.
protected transient  intfNodeParent
     Node parents.
protected transient  intfNodePrevSib
     Node prev siblings.
protected transient  intfNodeType
     Node types.
protected transient  ObjectfNodeURI
     Node namespace URI.
protected transient  ObjectfNodeValue
     Node values.
final static  longserialVersionUID
     Serialization version.

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  voidappendChild(int parentIndex, int childIndex)
     Appends a child to the specified parent in the table.
protected static  intbinarySearch(int values, int start, int end, int target)
     Performs a binary search for a target value in an array of values.
public  intcloneNode(int nodeIndex, boolean deep)
     Creates a clone of the specified node.
public  intcreateDeferredAttribute(String attrName, String attrValue, boolean specified)
     Creates an attribute in the table.
public  intcreateDeferredAttribute(String attrName, String attrURI, String attrValue, boolean specified)
     Creates an attribute with a URI in the table.
public  intcreateDeferredCDATASection(String data)
     Creates a CDATA section node in the table.
public  intcreateDeferredComment(String data)
     Creates a comment node in the table.
public  intcreateDeferredDocument()
     Creates a document node in the table.
public  intcreateDeferredDocumentType(String rootElementName, String publicId, String systemId)
     Creates a doctype.
public  intcreateDeferredElement(String elementURI, String elementName, Object type)
     Creates an element node with a URI in the table and type information.
public  intcreateDeferredElement(String elementName)
     Creates an element node in the table.
public  intcreateDeferredElement(String elementURI, String elementName)
     Creates an element node with a URI in the table.
public  intcreateDeferredElementDefinition(String elementName)
     Creates an element definition in the table.
public  intcreateDeferredEntity(String entityName, String publicId, String systemId, String notationName, String baseURI)
     Creates an entity in the table.
public  intcreateDeferredEntityReference(String name, String baseURI)
     Creates an entity reference node in the table.
public  intcreateDeferredNotation(String notationName, String publicId, String systemId, String baseURI)
     Creates a notation in the table.
public  intcreateDeferredProcessingInstruction(String target, String data)
     Creates a processing instruction node in the table.
public  intcreateDeferredTextNode(String data, boolean ignorableWhitespace)
     Creates a text node in the table.
protected  intcreateNode(short nodeType)
     Creates a node of the specified type.
protected  voidensureCapacity(int chunk)
     Ensures that the internal tables are large enough.
public  StringgetAttribute(int elemIndex, String name)
     Returns the attribute value of the given name.
public  StringgetDeferredEntityBaseURI(int entityIndex)
    
public  DOMImplementationgetImplementation()
     Retrieve information describing the abilities of this particular DOM implementation.
public  intgetLastChild(int nodeIndex)
     Returns the last child of the given node.
public  intgetLastChild(int nodeIndex, boolean free)
     Returns the last child of the given node.
 booleangetNamespacesEnabled()
     Returns the cached parser.getNamespaces() value.
public  intgetNodeExtra(int nodeIndex)
     Returns the extra info of the given node.
public  intgetNodeExtra(int nodeIndex, boolean free)
     Returns the extra info of the given node.
public  intgetNodeIndex()
     Returns the node index.
public  StringgetNodeName(int nodeIndex)
     Returns the name of the given node.
public  StringgetNodeName(int nodeIndex, boolean free)
     Returns the name of the given node.
public  DeferredNodegetNodeObject(int nodeIndex)
     Instantiates the requested node object.
public  shortgetNodeType(int nodeIndex)
     Returns the type of the given node.
public  shortgetNodeType(int nodeIndex, boolean free)
     Returns the type of the given node.
public  StringgetNodeURI(int nodeIndex)
     Returns the URI of the given node.
public  StringgetNodeURI(int nodeIndex, boolean free)
     Returns the URI of the given node.
public  StringgetNodeValue(int nodeIndex)
     Returns the value of the given node.
public  StringgetNodeValue(int nodeIndex, boolean free)
     Returns the value of the given node.
public  StringgetNodeValueString(int nodeIndex)
     Returns the real value of the given node.
public  StringgetNodeValueString(int nodeIndex, boolean free)
     Returns the real value of the given node.
public  intgetParentNode(int nodeIndex)
     Returns the parent node of the given node.
public  intgetParentNode(int nodeIndex, boolean free)
     Returns the parent node of the given node.
public  intgetPrevSibling(int nodeIndex)
     Returns the prev sibling of the given node.
public  intgetPrevSibling(int nodeIndex, boolean free)
     Returns the prev sibling of the given node.
public  intgetRealPrevSibling(int nodeIndex)
     Returns the real prev sibling of the given node, directly from the data structures.
public  intgetRealPrevSibling(int nodeIndex, boolean free)
     Returns the real prev sibling of the given node.
public  ObjectgetTypeInfo(int nodeIndex)
    
public  intinsertBefore(int parentIndex, int newChildIndex, int refChildIndex)
     Inserts a child before the specified node in the table.
public  intlookupElementDefinition(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  voidprint()
     Prints out the tables.
public  voidputIdentifier(String name, int elementNodeIndex)
     Registers an identifier name with a specified element node.
public  voidsetAsLastChild(int parentIndex, int childIndex)
     Sets the last child of the parentIndex to childIndex.
public  intsetAttributeNode(int elemIndex, int attrIndex)
     Adds an attribute node to the specified element.
public  intsetDeferredAttribute(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  intsetDeferredAttribute(int elementNodeIndex, String attrName, String attrURI, String attrValue, boolean specified)
     Sets an attribute on an element node.
public  voidsetEntityInfo(int currentEntityDecl, String version, String encoding)
    
public  voidsetIdAttribute(int attrIndex)
    
public  voidsetIdAttributeNode(int elemIndex, int attrIndex)
     Adds an attribute node to the specified element.
public  voidsetInputEncoding(int currentEntityDecl, String value)
     DOM Internal An attribute specifying the actual encoding of this document.
public  voidsetInternalSubset(int doctypeIndex, String subset)
    
 voidsetNamespacesEnabled(boolean enable)
    
public  voidsetTypeInfo(int elementNodeIndex, Object type)
    
protected  voidsynchronizeChildren()
     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  voidsynchronizeChildren(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  voidsynchronizeChildren(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  voidsynchronizeData()
     Synchronizes the node's data.

Field Detail
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.




Constructor Detail
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.




Method Detail
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.



createDeferredEntity
public int createDeferredEntity(String entityName, String publicId, String systemId, String notationName, String baseURI)(Code)
Creates an entity 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.



Fields inherited from org.apache.xerces.dom.DocumentImpl
protected Hashtable eventListeners(Code)(Java Doc)
protected Vector iterators(Code)(Java Doc)
protected boolean mutationEvents(Code)(Java Doc)
protected Vector ranges(Code)(Java Doc)
EnclosingAttr savedEnclosingAttr(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

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)

Fields inherited from org.apache.xerces.dom.CoreDocumentImpl
protected String actualEncoding(Code)(Java Doc)
protected boolean allowGrammarAccess(Code)(Java Doc)
protected int changes(Code)(Java Doc)
protected ElementImpl docElement(Code)(Java Doc)
protected DocumentTypeImpl docType(Code)(Java Doc)
transient DOMNormalizer domNormalizer(Code)(Java Doc)
protected String encoding(Code)(Java Doc)
protected boolean errorChecking(Code)(Java Doc)
transient DOMConfigurationImpl fConfiguration(Code)(Java Doc)
protected String fDocumentURI(Code)(Java Doc)
transient NodeListCache fFreeNLCache(Code)(Java Doc)
transient Object fXPathEvaluator(Code)(Java Doc)
protected Hashtable identifiers(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)
protected boolean standalone(Code)(Java Doc)
protected Hashtable userData(Code)(Java Doc)
protected String version(Code)(Java Doc)
protected boolean xmlVersionChanged(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)

Fields inherited from org.apache.xerces.dom.ParentNode
protected transient NodeListCache fNodeListCache(Code)(Java Doc)
protected ChildNode firstChild(Code)(Java Doc)
protected CoreDocumentImpl ownerDocument(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xerces.dom.ParentNode
void checkNormalizationAfterInsert(ChildNode insertedChild)(Code)(Java Doc)
void checkNormalizationAfterRemove(ChildNode previousSibling)(Code)(Java Doc)
public Node cloneNode(boolean deep)(Code)(Java Doc)
public NodeList getChildNodes()(Code)(Java Doc)
final protected NodeList getChildNodesUnoptimized()(Code)(Java Doc)
public Node getFirstChild()(Code)(Java Doc)
public Node getLastChild()(Code)(Java Doc)
public int getLength()(Code)(Java Doc)
public Document getOwnerDocument()(Code)(Java Doc)
public String getTextContent() throws DOMException(Code)(Java Doc)
void getTextContent(StringBuffer buf) throws DOMException(Code)(Java Doc)
public boolean hasChildNodes()(Code)(Java Doc)
final boolean hasTextContent(Node child)(Code)(Java Doc)
public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
Node internalInsertBefore(Node newChild, Node refChild, boolean replace) throws DOMException(Code)(Java Doc)
Node internalRemoveChild(Node oldChild, boolean replace) throws DOMException(Code)(Java Doc)
public boolean isEqualNode(Node arg)(Code)(Java Doc)
public Node item(int index)(Code)(Java Doc)
final ChildNode lastChild()(Code)(Java Doc)
final void lastChild(ChildNode node)(Code)(Java Doc)
public void normalize()(Code)(Java Doc)
CoreDocumentImpl ownerDocument()(Code)(Java Doc)
public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc)
public Node replaceChild(Node newChild, Node oldChild) throws DOMException(Code)(Java Doc)
protected void setOwnerDocument(CoreDocumentImpl doc)(Code)(Java Doc)
public void setReadOnly(boolean readOnly, boolean deep)(Code)(Java Doc)
public void setTextContent(String textContent) throws DOMException(Code)(Java Doc)
protected void synchronizeChildren()(Code)(Java Doc)

Fields inherited from org.apache.xerces.dom.ChildNode
protected ChildNode nextSibling(Code)(Java Doc)
protected ChildNode previousSibling(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xerces.dom.ChildNode
public Node cloneNode(boolean deep)(Code)(Java Doc)
public Node getNextSibling()(Code)(Java Doc)
public Node getParentNode()(Code)(Java Doc)
public Node getPreviousSibling()(Code)(Java Doc)
final NodeImpl parentNode()(Code)(Java Doc)
final ChildNode previousSibling()(Code)(Java Doc)

Fields inherited from org.apache.xerces.dom.NodeImpl
final public static short DOCUMENT_POSITION_CONTAINS(Code)(Java Doc)
final public static short DOCUMENT_POSITION_DISCONNECTED(Code)(Java Doc)
final public static short DOCUMENT_POSITION_FOLLOWING(Code)(Java Doc)
final public static short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC(Code)(Java Doc)
final public static short DOCUMENT_POSITION_IS_CONTAINED(Code)(Java Doc)
final public static short DOCUMENT_POSITION_PRECEDING(Code)(Java Doc)
final public static short ELEMENT_DEFINITION_NODE(Code)(Java Doc)
final protected static short FIRSTCHILD(Code)(Java Doc)
final protected static short HASSTRING(Code)(Java Doc)
final protected static short ID(Code)(Java Doc)
final protected static short IGNORABLEWS(Code)(Java Doc)
final protected static short NORMALIZED(Code)(Java Doc)
final protected static short OWNED(Code)(Java Doc)
final protected static short READONLY(Code)(Java Doc)
final protected static short SPECIFIED(Code)(Java Doc)
final protected static short SYNCCHILDREN(Code)(Java Doc)
final protected static short SYNCDATA(Code)(Java Doc)
final public static short TREE_POSITION_ANCESTOR(Code)(Java Doc)
final public static short TREE_POSITION_DESCENDANT(Code)(Java Doc)
final public static short TREE_POSITION_DISCONNECTED(Code)(Java Doc)
final public static short TREE_POSITION_EQUIVALENT(Code)(Java Doc)
final public static short TREE_POSITION_FOLLOWING(Code)(Java Doc)
final public static short TREE_POSITION_PRECEDING(Code)(Java Doc)
final public static short TREE_POSITION_SAME_NODE(Code)(Java Doc)
protected short flags(Code)(Java Doc)
protected NodeImpl ownerNode(Code)(Java Doc)
final static long serialVersionUID(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)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.