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 <util/XercesDefs.hpp>
00065 #include <dom/DOM_DocumentType.hpp>
00066 #include <dom/DOM_DOMImplementation.hpp>
00067 #include <dom/DOM_Element.hpp>
00068 #include <dom/DOM_DocumentFragment.hpp>
00069 #include <dom/DOM_Comment.hpp>
00070 #include <dom/DOM_CDATASection.hpp>
00071 #include <dom/DOM_ProcessingInstruction.hpp>
00072 #include <dom/DOM_Attr.hpp>
00073 #include <dom/DOM_Entity.hpp>
00074 #include <dom/DOM_EntityReference.hpp>
00075 #include <dom/DOM_NodeList.hpp>
00076 #include <dom/DOM_Notation.hpp>
00077 #include <dom/DOM_Text.hpp>
00078 #include <dom/DOM_Node.hpp>
00079 #include <dom/DOM_NodeIterator.hpp>
00080 #include <dom/DOM_TreeWalker.hpp>
00081 #include <dom/DOM_XMLDecl.hpp>
00082 #include <dom/DOM_Range.hpp>
00083 
00084 class DocumentImpl;
00085 class NodeIteratorImpl;
00086 
00087 
00100 class  DOM_Document: public DOM_Node {
00101 
00102 public:
00105 
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 
00356 
00357     DOM_NodeIterator createNodeIterator(DOM_Node root,
00358                                         unsigned long whatToShow,
00359                                         DOM_NodeFilter*  filter,
00360                                         bool entityReferenceExpansion);
00391 
00392     DOM_TreeWalker  createTreeWalker(DOM_Node root,
00393                                      unsigned long whatToShow,
00394                                      DOM_NodeFilter*  filter,
00395                                      bool entityReferenceExpansion);
00396 
00411 
00412     DOM_XMLDecl createXMLDecl(const DOMString& version,
00413                             const DOMString& encoding,
00414                             const DOMString& standalone);
00415 
00426     DOM_Range    createRange();
00427 
00429 
00431 
00440     DOM_DocumentType       getDoctype() const;
00441 
00442 
00443 
00447     DOM_DOMImplementation  &getImplementation() const;
00448 
00449 
00453     DOM_Element     getDocumentElement() const;
00454 
00469     DOM_NodeList           getElementsByTagName(const DOMString &tagname) const;
00470 
00472 
00474 
00497     DOM_Node            importNode(const DOM_Node &importedNode, bool deep);
00498 
00521     DOM_Element         createElementNS(const DOMString &namespaceURI,
00522     const DOMString &qualifiedName);
00523 
00552     DOM_Attr            createAttributeNS(const DOMString &namespaceURI,
00553     const DOMString &qualifiedName);
00554 
00571     DOM_NodeList        getElementsByTagNameNS(const DOMString &namespaceURI,
00572     const DOMString &localName) const;
00573 
00589     DOM_Element         getElementById(const DOMString &elementId);
00590 
00609     void setErrorChecking(bool check);
00610 
00614     bool getErrorChecking();
00615 
00617 
00618 protected:
00619     DOM_Document (DocumentImpl *impl);
00620 
00621     friend class DOM_Node;
00622     friend class DocumentImpl;
00623     friend class NodeIteratorImpl;
00624     friend class DOM_DOMImplementation;
00625 
00626 };
00627 
00628 
00629 #endif