00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 
00029 
00030 
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 
00039 
00040 
00041 
00042 
00043 
00044 
00045 
00046 
00047 
00048 
00049 
00050 
00051 
00052 
00053 
00054 
00055 
00056 
00057 
00058 
00059 
00060 
00061 #ifndef DOM_Document_HEADER_GUARD_
00062 #define DOM_Document_HEADER_GUARD_
00063 
00064 #include <xercesc/util/XercesDefs.hpp>
00065 #include <xercesc/dom/DOM_DocumentType.hpp>
00066 #include <xercesc/dom/DOM_DOMImplementation.hpp>
00067 #include <xercesc/dom/DOM_Element.hpp>
00068 #include <xercesc/dom/DOM_DocumentFragment.hpp>
00069 #include <xercesc/dom/DOM_Comment.hpp>
00070 #include <xercesc/dom/DOM_CDATASection.hpp>
00071 #include <xercesc/dom/DOM_ProcessingInstruction.hpp>
00072 #include <xercesc/dom/DOM_Attr.hpp>
00073 #include <xercesc/dom/DOM_Entity.hpp>
00074 #include <xercesc/dom/DOM_EntityReference.hpp>
00075 #include <xercesc/dom/DOM_NodeList.hpp>
00076 #include <xercesc/dom/DOM_Notation.hpp>
00077 #include <xercesc/dom/DOM_Text.hpp>
00078 #include <xercesc/dom/DOM_Node.hpp>
00079 #include <xercesc/dom/DOM_NodeIterator.hpp>
00080 #include <xercesc/dom/DOM_TreeWalker.hpp>
00081 #include <xercesc/dom/DOM_XMLDecl.hpp>
00082 #include <xercesc/dom/DOM_Range.hpp>
00083 
00084 class DocumentImpl;
00085 class NodeIteratorImpl;
00086 
00087 
00100 class CDOM_EXPORT DOM_Document: public DOM_Node {
00101 
00102 public:
00114     DOM_Document();
00115 
00122     DOM_Document(const DOM_Document &other);
00128     DOM_Document & operator = (const DOM_Document &other);
00129 
00143     DOM_Document & operator = (const DOM_NullPtr *val);
00144 
00145 
00146 
00148 
00150         
00163     ~DOM_Document();
00164 
00166 
00168 
00181     static DOM_Document   createDocument();
00182 
00190     DOM_Entity     createEntity(const DOMString &name);
00191 
00204     DOM_Element     createElement(const DOMString &tagName);
00205 
00223     DOM_Element     createElement(const XMLCh *tagName);
00224 
00225 
00232     DOM_DocumentFragment   createDocumentFragment();
00233 
00241     DOM_Text         createTextNode(const DOMString &data);
00242 
00250     DOM_Comment      createComment(const DOMString &data);
00251 
00261     DOM_CDATASection   createCDATASection(const DOMString &data);
00262 
00270     DOM_DocumentType createDocumentType(const DOMString &name);
00271 
00272 
00282     DOM_Notation createNotation(const DOMString &name);
00283 
00284 
00296     DOM_ProcessingInstruction createProcessingInstruction(const DOMString &target,
00297         const DOMString &data);
00298 
00299 
00316     DOM_Attr     createAttribute(const DOMString &name);
00317 
00318 
00329     DOM_EntityReference    createEntityReference(const DOMString &name);
00330 
00331 
00355     DOM_NodeIterator createNodeIterator(DOM_Node root,
00356                                         unsigned long whatToShow,
00357                                         DOM_NodeFilter*  filter,
00358                                         bool entityReferenceExpansion);
00388     DOM_TreeWalker  createTreeWalker(DOM_Node root,
00389                                      unsigned long whatToShow,
00390                                      DOM_NodeFilter*  filter,
00391                                      bool entityReferenceExpansion);
00392 
00406     DOM_XMLDecl createXMLDecl(const DOMString& version,
00407                             const DOMString& encoding,
00408                             const DOMString& standalone);
00409 
00420     DOM_Range    createRange();
00421 
00423 
00434     DOM_DocumentType       getDoctype() const;
00435 
00436 
00437 
00441     DOM_DOMImplementation  &getImplementation() const;
00442 
00443 
00447     DOM_Element     getDocumentElement() const;
00448 
00463     DOM_NodeList           getElementsByTagName(const DOMString &tagname) const;
00464 
00466 
00468 
00489     DOM_Node            importNode(const DOM_Node &importedNode, bool deep);
00490 
00511     DOM_Element         createElementNS(const DOMString &namespaceURI,
00512         const DOMString &qualifiedName);
00513 
00540     DOM_Attr            createAttributeNS(const DOMString &namespaceURI,
00541         const DOMString &qualifiedName);
00542 
00557     DOM_NodeList        getElementsByTagNameNS(const DOMString &namespaceURI,
00558         const DOMString &localName) const;
00559 
00573     DOM_Element         getElementById(const DOMString &elementId);
00574 
00593     void setErrorChecking(bool check);
00594 
00598     bool getErrorChecking();
00599 
00601 
00602 protected:
00603     DOM_Document (DocumentImpl *impl);
00604 
00605     friend class DOM_Node;
00606     friend class DocumentImpl;
00607     friend class NodeIteratorImpl;
00608     friend class DOM_DOMImplementation;
00609 
00610 };
00611 
00612 
00613 #endif