org.apache.xerces.dom

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 » Web Server » Rimfaxe Web Server » org.apache.xerces.dom 
org.apache.xerces.dom
Java Source File NameTypeComment
AttributeMap.javaClass AttributeMap inherits from NamedNodeMapImpl and extends it to deal with the specifics of storing attributes.
AttrImpl.javaClass Attribute represents an XML-style attribute of an Element.
AttrNSImpl.javaClass AttrNSImpl inherits from AttrImpl and adds namespace support.
CDATASectionImpl.javaClass XML provides the CDATA markup to allow a region of text in which most of the XML delimiter recognition does not take place.
CharacterDataImpl.javaClass CharacterData is an abstract Node that can carry character data as its Value.
ChildNode.javaClass ChildNode inherits from NodeImpl and adds the capability of being a child by having references to its previous and next siblings.
CommentImpl.javaClass Represents an XML (or HTML) comment.
CoreDocumentImpl.javaClass 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.

CoreDOMImplementationImpl.javaClass The DOMImplementation class is description of a particular implementation of the Document Object Model.
DeepNodeListImpl.javaClass This class implements the DOM's NodeList behavior for Element.getElementsByTagName()

The DOM describes NodeList as follows:

1) It may represent EITHER nodes scattered through a subtree (when returned by Element.getElementsByTagName), or just the immediate children (when returned by Node.getChildNodes).

DeferredAttrImpl.javaClass Attribute represents an XML-style attribute of an Element.
DeferredAttrNSImpl.javaClass DeferredAttrNSImpl is to AttrNSImpl, what DeferredAttrImpl is to AttrImpl.
DeferredCDATASectionImpl.javaClass XML provides the CDATA markup to allow a region of text in which most of the XML delimiter recognition does not take place.
DeferredCommentImpl.javaClass Represents an XML (or HTML) comment.
DeferredDocumentImpl.javaClass 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.

DeferredDocumentTypeImpl.javaClass This class represents a Document Type declaraction in the document itself, not a Document Type Definition (DTD). An XML document may (or may not) have such a reference.

DocumentType is an Extended DOM feature, used in XML documents but not in HTML.

Note that Entities and Notations are no longer children of the DocumentType, but are parentless nodes hung only in their appropriate NamedNodeMaps.

This area is UNDERSPECIFIED IN REC-DOM-Level-1-19981001 Most notably, absolutely no provision was made for storing and using Element and Attribute information.

DeferredElementDefinitionImpl.javaClass NON-DOM CLASS: Describe one of the Elements (and its associated Attributes) defined in this Document Type.

I've included this in Level 1 purely as an anchor point for default attributes.

DeferredElementImpl.javaClass Elements represent most of the "markup" and structure of the document.
DeferredElementNSImpl.javaClass DeferredElementNSImpl is to ElementNSImpl, what DeferredElementImpl is to ElementImpl.
DeferredEntityImpl.javaClass Entity nodes hold the reference data for an XML Entity -- either parsed or unparsed.
DeferredEntityReferenceImpl.javaClass EntityReference models the XML &entityname; syntax, when used for entities defined by the DOM.
DeferredNode.javaInterface An interface for deferred node object.
DeferredNotationImpl.javaClass Notations are how the Document Type Description (DTD) records hints about the format of an XML "unparsed entity" -- in other words, non-XML data bound to this document type, which some applications may wish to consult when manipulating the document.
DeferredProcessingInstructionImpl.javaClass Processing Instructions (PIs) permit documents to carry processor-specific information alongside their actual content.
DeferredTextImpl.javaClass Text nodes hold the non-markup, non-Entity content of an Element or Attribute.

When a document is first made available to the DOM, there is only one Text object for each block of adjacent plain-text.

DocumentFragmentImpl.javaClass DocumentFragment is a "lightweight" or "minimal" Document object.
DocumentImpl.javaClass 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.

DocumentTypeImpl.javaClass This class represents a Document Type declaraction in the document itself, not a Document Type Definition (DTD). An XML document may (or may not) have such a reference.

DocumentType is an Extended DOM feature, used in XML documents but not in HTML.

Note that Entities and Notations are no longer children of the DocumentType, but are parentless nodes hung only in their appropriate NamedNodeMaps.

This area is UNDERSPECIFIED IN REC-DOM-Level-1-19981001 Most notably, absolutely no provision was made for storing and using Element and Attribute information.

DOMImplementationImpl.javaClass The DOMImplementation class is description of a particular implementation of the Document Object Model.
ElementDefinitionImpl.javaClass NON-DOM CLASS: Describe one of the Elements (and its associated Attributes) defined in this Document Type.

I've included this in Level 1 purely as an anchor point for default attributes.

ElementImpl.javaClass Elements represent most of the "markup" and structure of the document.
ElementNSImpl.javaClass ElementNSImpl inherits from ElementImpl and adds namespace support.
EntityImpl.javaClass Entity nodes hold the reference data for an XML Entity -- either parsed or unparsed.
EntityReferenceImpl.javaClass EntityReference models the XML &entityname; syntax, when used for entities defined by the DOM.
LCount.javaClass Internal class LCount is used to track the number of listeners registered for a given event name, as an entry in a global hashtable.
NamedNodeMapImpl.javaClass NamedNodeMaps represent collections of Nodes that can be accessed by name.
NodeImpl.javaClass NodeImpl provides the basic structure of a DOM tree.
NodeIteratorImpl.javaClass DefaultNodeIterator implements a NodeIterator, which iterates a DOM tree in the expected depth first way.
NotationImpl.javaClass Notations are how the Document Type Description (DTD) records hints about the format of an XML "unparsed entity" -- in other words, non-XML data bound to this document type, which some applications may wish to consult when manipulating the document.
ParentNode.javaClass ParentNode inherits from ChildNode and adds the capability of having child nodes.
ProcessingInstructionImpl.javaClass Processing Instructions (PIs) permit documents to carry processor-specific information alongside their actual content.
RangeExceptionImpl.javaClass
RangeImpl.javaClass The RangeImpl class implements the org.w3c.dom.range.Range interface.
TextImpl.javaClass Text nodes hold the non-markup, non-Entity content of an Element or Attribute.

When a document is first made available to the DOM, there is only one Text object for each block of adjacent plain-text.

TreeWalkerImpl.javaClass This class implements the TreeWalker interface.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.