DOM_Document.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:25k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Id: DOM_Document.hpp,v 1.16 2001/05/11 13:25:20 tng Exp $
  58. */
  59. #ifndef DOM_Document_HEADER_GUARD_
  60. #define DOM_Document_HEADER_GUARD_
  61. #include <util/XercesDefs.hpp>
  62. #include <dom/DOM_DocumentType.hpp>
  63. #include <dom/DOM_DOMImplementation.hpp>
  64. #include <dom/DOM_Element.hpp>
  65. #include <dom/DOM_DocumentFragment.hpp>
  66. #include <dom/DOM_Comment.hpp>
  67. #include <dom/DOM_CDATASection.hpp>
  68. #include <dom/DOM_ProcessingInstruction.hpp>
  69. #include <dom/DOM_Attr.hpp>
  70. #include <dom/DOM_Entity.hpp>
  71. #include <dom/DOM_EntityReference.hpp>
  72. #include <dom/DOM_NodeList.hpp>
  73. #include <dom/DOM_Notation.hpp>
  74. #include <dom/DOM_Text.hpp>
  75. #include <dom/DOM_Node.hpp>
  76. #include <dom/DOM_NodeIterator.hpp>
  77. #include <dom/DOM_TreeWalker.hpp>
  78. #include <dom/DOM_XMLDecl.hpp>
  79. #include <dom/DOM_Range.hpp>
  80. class DocumentImpl;
  81. class NodeIteratorImpl;
  82. /**
  83. * Class to refer to XML Document nodes in the DOM.
  84. *
  85. * Conceptually, a DOM document node is the root of the document tree, and provides
  86. * the  primary access to the document's data.
  87. * <p>Since elements, text nodes, comments, processing instructions, etc.
  88. * cannot exist outside the context of a <code>Document</code>, the
  89. * <code>Document</code> interface also contains the factory methods needed
  90. * to create these objects.  The <code>Node</code> objects created have a
  91. * <code>ownerDocument</code> attribute which associates them with the
  92. * <code>Document</code> within whose  context they were created.
  93. */
  94. class CDOM_EXPORT DOM_Document: public DOM_Node {
  95. public:
  96.     /** @name Constructors and assignment operators */
  97.     //@{
  98.     /**
  99.      * The default constructor for DOM_Document creates a null
  100.      * DOM_Document object that refers to no document.  It may subsequently be
  101.      * assigned to refer to an actual Document node.
  102.      *
  103.      * To create a new document, use the static method
  104.      *   <code> DOM_Document::createDocument(). </code>
  105.      *
  106.      */
  107.     DOM_Document();
  108.     /**
  109.       * Copy constructor.  Creates a new <code>DOM_Document</code> that refers to the
  110.       * same underlying actual document as the original.
  111.       *
  112.       * @param other The object to be copied
  113.       */
  114.     DOM_Document(const DOM_Document &other);
  115.     /**
  116.       * Assignment operator
  117.       *
  118.       * @param other The object to be copied
  119.       */
  120.     DOM_Document & operator = (const DOM_Document &other);
  121.     /**
  122.       * Assignment operator.  This overloaded variant is provided for
  123.       *   the sole purpose of setting a DOM_Node reference variable to
  124.       *   zero.  Nulling out a reference variable in this way will decrement
  125.       *   the reference count on the underlying Node object that the variable
  126.       *   formerly referenced.  This effect is normally obtained when reference
  127.       *   variable goes out of scope, but zeroing them can be useful for
  128.       *   global instances, or for local instances that will remain in scope
  129.       *   for an extended time,  when the storage belonging to the underlying
  130.       *   node needs to be reclaimed.
  131.       *
  132.       * @param val.  Only a value of 0, or null, is allowed.
  133.       */
  134.     DOM_Document & operator = (const DOM_NullPtr *val);
  135. //@}
  136.   /** @name Destructor */
  137.   //@{
  138.   /**
  139.     * Destructor.  The object being destroyed is the reference
  140.     * object, not the underlying Document itself.
  141.     *
  142.     * <p>The reference counting memory management will
  143.     *  delete the underlying document itself if this
  144.     * DOM_Document is the last remaining to refer to the Document,
  145.     * and if there are no remaining references to any of the nodes
  146.     * within the document tree.  If other live references do remain,
  147.     * the underlying document itself remains also.
  148.     *
  149.     */
  150.     ~DOM_Document();
  151.   //@}
  152.   /** @name Factory methods to create new nodes for the Document */
  153.   //@{
  154.     /**
  155.     *   Create a new empty document.
  156.     *
  157.     *   This differs from the <code> DOM_Document </code> default
  158.     *   constructor, which creates
  159.     *   a null reference only, not an actual document.
  160.     *
  161.     *   <p>This function is an extension to the DOM API, which
  162.     *   lacks any mechanism for the creation of new documents.
  163.     *   @return A new <code>DOM_Document</code>, which may then
  164.     *   be populated using the DOM API calls.
  165.     */
  166.     static DOM_Document   createDocument();
  167.     /**
  168.     *  Create a new entity.
  169.     *
  170.     *  Non-standard extension.
  171.     * @param name The name of the entity to instantiate
  172.     *
  173.     */
  174.     DOM_Entity     createEntity(const DOMString &name);
  175.     /**
  176.     * Creates an element of the type specified.
  177.     *
  178.     * Note that the instance returned
  179.     * implements the Element interface, so attributes can be specified
  180.     * directly  on the returned object.
  181.     * @param tagName The name of the element type to instantiate.
  182.     * @return A <code>DOM_Element</code> that reference the new element.
  183.     * @exception DOMException
  184.     *   INVALID_CHARACTER_ERR: Raised if the specified name contains an
  185.     *   illegal character.
  186.     */
  187.     DOM_Element     createElement(const DOMString &tagName);
  188.     /**
  189.     * Creates an element of the type specified.
  190.     * This non-standard overload of createElement, with the name specified as
  191.     * raw Unicode string, is intended for use from XML parsers,
  192.     * and is the best performing way to create elements.  The name
  193.     * string is not checked for conformance to the XML rules for valid
  194.     * element names.
  195.     *
  196.     *
  197.     * @param tagName The name of the element type to instantiate, as
  198.     *    a null-terminated unicode string.
  199.     * @return A new <CODE>DOM_Element</CODE>
  200.     *        object with the <CODE>nodeName</CODE> attribute set to
  201.     *        <CODE>tagName</CODE>, and <CODE>localName</CODE>,
  202.     *        <CODE>prefix</CODE>, and <CODE>namespaceURI</CODE> set to
  203.     *        <CODE>null</CODE>.
  204.     */
  205.     DOM_Element     createElement(const XMLCh *tagName);
  206.     /**
  207.     * Creates an empty DocumentFragment object.
  208.     *
  209.     * @return A <code>DOM_DocumentFragment</code> that references the newly
  210.     * created document fragment.
  211.     */
  212.     DOM_DocumentFragment   createDocumentFragment();
  213.     /**
  214.     * Creates a Text node given the specified string.
  215.     *
  216.     * @param data The data for the node.
  217.     * @return A <code>DOM_Text</code> object that references the newly
  218.     *  created text node.
  219.     */
  220.     DOM_Text         createTextNode(const DOMString &data);
  221.     /**
  222.     * Creates a Comment node given the specified string.
  223.     *
  224.     * @param data The data for the comment.
  225.     * @return A <code>DOM_Comment</code> that references the newly
  226.     *  created comment node.
  227.     */
  228.     DOM_Comment      createComment(const DOMString &data);
  229.     /**
  230.     * Creates a CDATASection node whose value  is the specified
  231.     * string.
  232.     *
  233.     * @param data The data for the <code>DOM_CDATASection</code> contents.
  234.     * @return A <code>DOM_CDATASection</code> object.
  235.     * @exception DOMException
  236.     *   NOT_SUPPORTED_ERR: Raised if this document is an HTML document.
  237.     */
  238.     DOM_CDATASection   createCDATASection(const DOMString &data);
  239.     /**
  240.     *  Create a DocumentType node.  Non-standard extension.
  241.     *
  242.     * @return A <code>DOM_DocumentType</code> that references the newly
  243.     *  created DocumentType node.
  244.     *
  245.     */
  246.     DOM_DocumentType createDocumentType(const DOMString &name);
  247.     /**
  248.     *  Create a Notation.
  249.     *
  250.     *  Non-standard extension.
  251.     *
  252.     *  @param name The name of the notation to instantiate
  253.     * @return A <code>DOM_Notation</code> that references the newly
  254.     *  created Notation node.
  255.     */
  256.     DOM_Notation createNotation(const DOMString &name);
  257.     /**
  258.     * Creates a ProcessingInstruction node given the specified
  259.     * name and data strings.
  260.     *
  261.     * @param target The target part of the processing instruction.
  262.     * @param data The data for the node.
  263.     * @return A <code>DOM_ProcessingInstruction</code> that references the newly
  264.     *  created PI node.
  265.     * @exception DOMException
  266.     *   INVALID_CHARACTER_ERR: Raised if an illegal character is specified.
  267.     */
  268.     DOM_ProcessingInstruction createProcessingInstruction(const DOMString &target,
  269.         const DOMString &data);
  270.     /**
  271.      * Creates an Attr of the given name.
  272.      *
  273.      * Note that the
  274.      * <code>Attr</code> instance can then be attached to an Element
  275.      * using the <code>DOMElement::setAttribute()</code> method.
  276.      * @param name The name of the attribute.
  277.      * @return A new <CODE>DOM_Attr</CODE>
  278.      *       object with the <CODE>nodeName</CODE> attribute set to
  279.      *       <CODE>name</CODE>, and <CODE>localName</CODE>, <CODE>prefix</CODE>,
  280.      *       and <CODE>namespaceURI</CODE> set to
  281.      *       <CODE>null</CODE>.
  282.      * @exception DOMException
  283.      *   INVALID_CHARACTER_ERR: Raised if the specified name contains an
  284.      *   illegal character.
  285.      */
  286.     DOM_Attr     createAttribute(const DOMString &name);
  287.     /**
  288.      * Creates an EntityReference object.
  289.      *
  290.      * @param name The name of the entity to reference.
  291.      * @return A <code>DOM_EntityReference</code> that references the newly
  292.      *  created EntityReference node.
  293.      * @exception DOMException
  294.      *   INVALID_CHARACTER_ERR: Raised if the specified name contains an
  295.      *   illegal character.
  296.      */
  297.     DOM_EntityReference    createEntityReference(const DOMString &name);
  298.     /**
  299.      * Creates a NodeIterator object.   (DOM2)
  300.      *
  301.      * NodeIterators are used to step through a set of nodes, e.g. the set of nodes in a NodeList, the
  302.      * document subtree governed by a particular node, the results of a query, or any other set of nodes.
  303.      * The set of nodes to be iterated is determined by the implementation of the NodeIterator. DOM Level 2
  304.      * specifies a single NodeIterator implementation for document-order traversal of a document subtree.
  305.      * Instances of these iterators are created by calling <code>DocumentTraversal.createNodeIterator()</code>.
  306.      *
  307.      * To produce a view of the document that has entity references expanded and does not
  308.      * expose the entity reference node itself, use the <code>whatToShow</code> flags to hide the entity
  309.      * reference node and set expandEntityReferences to true when creating the iterator. To
  310.      * produce a view of the document that has entity reference nodes but no entity expansion,
  311.      * use the <code>whatToShow</code> flags to show the entity reference node and set
  312.      * expandEntityReferences to false.
  313.      *
  314.      * <p><b>"Experimental - subject to change"</b></p>
  315.      *
  316.      * @param root The root node of the DOM tree
  317.      * @param whatToShow This attribute determines which node types are presented via the iterator.
  318.      * @param filter The filter used to screen nodes
  319.      * @param entityReferenceExpansion The value of this flag determines whether the children of entity reference nodes are
  320.      *                   visible to the iterator. If false, they will be skipped over.
  321.      */
  322.     DOM_NodeIterator createNodeIterator(DOM_Node root,
  323.                                         unsigned long whatToShow,
  324.                                         DOM_NodeFilter*  filter,
  325.                                         bool entityReferenceExpansion);
  326.      /**
  327.      * Creates a TreeWalker object.   (DOM2)
  328.      *
  329.      * TreeWalker objects are used to navigate a document tree or subtree using the view of the document defined
  330.      * by its whatToShow flags and any filters that are defined for the TreeWalker. Any function which performs
  331.      * navigation using a TreeWalker will automatically support any view defined by a TreeWalker.
  332.      *
  333.      * Omitting nodes from the logical view of a subtree can result in a structure that is substantially different from
  334.      * the same subtree in the complete, unfiltered document. Nodes that are siblings in the TreeWalker view may
  335.      * be children of different, widely separated nodes in the original view. For instance, consider a Filter that skips
  336.      * all nodes except for Text nodes and the root node of a document. In the logical view that results, all text
  337.      * nodes will be siblings and appear as direct children of the root node, no matter how deeply nested the
  338.      * structure of the original document.
  339.      *
  340.      * To produce a view of the document that has entity references expanded
  341.      * and does not expose the entity reference node itself, use the whatToShow
  342.      * flags to hide the entity reference node and set <code>expandEntityReferences</code> to
  343.      * true when creating the TreeWalker. To produce a view of the document
  344.      * that has entity reference nodes but no entity expansion, use the
  345.      * <code>whatToShow</code> flags to show the entity reference node and set
  346.      * <code>expandEntityReferences</code> to false
  347.      *
  348.      * <p><b>"Experimental - subject to change"</b></p>
  349.      *
  350.      * @param root The root node of the DOM tree
  351.      * @param whatToShow This attribute determines which node types are presented via the tree-walker.
  352.      * @param filter The filter used to screen nodes
  353.      * @param entityReferenceExpansion The value of this flag determines whether the children of entity reference nodes are
  354.      *                   visible to the tree-walker. If false, they will be skipped over.
  355.      */
  356.     DOM_TreeWalker  createTreeWalker(DOM_Node root,
  357.                                      unsigned long whatToShow,
  358.                                      DOM_NodeFilter*  filter,
  359.                                      bool entityReferenceExpansion);
  360.     /**
  361.      * Creates a XMLDecl type Node .   Non-Standard (an extension to xerces)
  362.      *
  363.      * XMLDecl Nodes are created to get  version, encoding and standalone information in a document tree
  364.      *
  365.      * This node if created gets attached to a document object or an entity node. There can be no child
  366.      * to this type of node.
  367.      *
  368.      * <p><b>"Experimental - subject to change"</b></p>
  369.      *
  370.      * @param version The version data of the document. Currently possible value is 1.0
  371.      * @param encoding The encoding type specified in the document
  372.      * @param standalone The information whether the document is standalone or not
  373.      */
  374.     DOM_XMLDecl createXMLDecl(const DOMString& version,
  375.                             const DOMString& encoding,
  376.                             const DOMString& standalone);
  377.     /**
  378.   * To create the range  consisting of boundary-points and offset of the
  379.       * selected contents
  380.       *
  381.       * @return The initial state of the Range such that both the boundary-points
  382.       * are positioned at the beginning of the corresponding DOM_DOcument, before
  383.       * any content. The range returned can only be used to select content
  384.       * associated with this document, or with documentFragments and Attrs for
  385.       * which this document is the ownerdocument
  386.   */
  387.     DOM_Range    createRange();
  388.     //@}
  389.     /** @name Getter functions */
  390.     //@{
  391.     /**
  392.      * Get Document Type Declaration (see <code>DOM_DocumentType</code>) associated
  393.      * with  this document.
  394.      *
  395.      * For documents without
  396.      * a document type declaration this returns <code>null</code> reference object. The DOM Level
  397.      *  1 does not support editing the Document Type Declaration, therefore
  398.      * <code>docType</code> cannot be altered in any way.
  399.      */
  400.     DOM_DocumentType       getDoctype() const;
  401.     /**
  402.      * Return the <code>DOMImplementation</code> object that handles this document.
  403.      */
  404.     DOM_DOMImplementation  &getImplementation() const;
  405.     /**
  406.      * Return a reference to the root element of the document.
  407.      */
  408.     DOM_Element     getDocumentElement() const;
  409.     /**
  410.      * Returns a <code>DOM_NodeList</code> of all the elements with a
  411.      * given tag name.  The returned node list is "live", in that changes
  412.      * to the document tree made after a nodelist was initially
  413.      * returned will be immediately reflected in the node list.
  414.      *
  415.      * The elements in the node list are ordered in the same order in which they
  416.      * would be encountered in a
  417.      * preorder traversal of the <code>Document</code> tree.
  418.      * @param tagname The name of the tag to match on. The special value "*"
  419.      *   matches all tags.
  420.      * @return A reference to a NodeList containing all the matched
  421.      *   <code>Element</code>s.
  422.      */
  423.     DOM_NodeList           getElementsByTagName(const DOMString &tagname) const;
  424.     //@}
  425.     /** @name Functions introduced in DOM Level 2. */
  426.     //@{
  427.     /**
  428.      * Imports a node from another document to this document.
  429.      * The returned node has no parent (<CODE>parentNode</CODE> is
  430.      * <CODE>null</CODE>). The source node is not altered or removed from the
  431.      * original document; this method creates a new copy of the source
  432.      * node.<BR>For all nodes, importing a node creates a node object owned by
  433.      * the importing document, with attribute values identical to the source
  434.      * node's <CODE>nodeName</CODE> and <CODE>nodeType</CODE>, plus the
  435.      * attributes related to namespaces (prefix and namespaces URI).
  436.      *
  437.      * <p><b>"Experimental - subject to change"</b></p>
  438.      *
  439.      * @param importedNode The node to import.
  440.      * @param deep If <CODE>true</CODE>, recursively import the subtree under the
  441.      *      specified node; if <CODE>false</CODE>, import only the node itself,
  442.      *      as explained above. This does not apply to <CODE>DOM_Attr</CODE>,
  443.      *      <CODE>DOM_EntityReference</CODE>, and <CODE>DOM_Notation</CODE> nodes.
  444.      * @return The imported node that belongs to this <CODE>DOM_Document</CODE>.
  445.      * @exception DOMException
  446.      *   NOT_SUPPORTED_ERR: Raised if the type of node being imported is
  447.      *                      not supported.
  448.      */
  449.     DOM_Node            importNode(const DOM_Node &importedNode, bool deep);
  450.     /**
  451.      * Creates an element of the given qualified name and
  452.      * namespace URI.
  453.      *
  454.      * <p><b>"Experimental - subject to change"</b></p>
  455.      *
  456.      * @param namespaceURI The <em>namespace URI</em> of
  457.      *   the element to create.
  458.      * @param qualifiedName The <em>qualified name</em>
  459.      *   of the element type to instantiate.
  460.      * @return A new <code>DOM_Element</code> object.
  461.      * @exception DOMException
  462.      *   INVALID_CHARACTER_ERR: Raised if the specified qualified name contains
  463.      *                          an illegal character.
  464.      * <br>
  465.      *   NAMESPACE_ERR: Raised if the <CODE>qualifiedName</CODE> is
  466.      *      malformed, if the <CODE>qualifiedName</CODE> has a prefix and the
  467.      *      <CODE>namespaceURI</CODE> is <CODE>null</CODE> or an empty string,
  468.      *      or if the <CODE>qualifiedName</CODE> has a prefix that is "xml" and
  469.      *      the <CODE>namespaceURI</CODE> is different from
  470.      *      "http://www.w3.org/XML/1998/namespace".
  471.      */
  472.     DOM_Element         createElementNS(const DOMString &namespaceURI,
  473. const DOMString &qualifiedName);
  474.     /**
  475.      * Creates an attribute of the given qualified name and namespace
  476.      * URI.
  477.      *
  478.      * <p><b>"Experimental - subject to change"</b></p>
  479.      *
  480.      * @param namespaceURI The <em>namespace URI</em> of
  481.      *   the attribute to create.
  482.      * @param qualifiedName The <em>qualified name</em>
  483.      *   of the attribute to instantiate.
  484.      * @return A new <code>DOM_Attr</code> object.
  485.      * @exception DOMException
  486.      *   INVALID_CHARACTER_ERR: Raised if the specified qualified name contains
  487.      *                          an illegal character.
  488.      * <br>
  489.      *   NAMESPACE_ERR: Raised if the <CODE>qualifiedName</CODE> is
  490.      *      malformed, if the <CODE>qualifiedName</CODE> has a prefix and the
  491.      *      <CODE>namespaceURI</CODE> is <CODE>null</CODE> or an empty string,
  492.      *      if the <CODE>qualifiedName</CODE> has a prefix that is "xml" and the
  493.      *      <CODE>namespaceURI</CODE> is different from
  494.      *      "http://www.w3.org/XML/1998/namespace", if the
  495.      *      <CODE>qualifiedName</CODE> has a prefix that is "xmlns" and the
  496.      *      <CODE>namespaceURI</CODE> is different from
  497.      *      "http://www.w3.org/2000/xmlns/", or if the
  498.      *      <CODE>qualifiedName</CODE> is "xmlns" and the
  499.      *      <CODE>namespaceURI</CODE> is different from
  500.      *      "http://www.w3.org/2000/xmlns/".
  501.      */
  502.     DOM_Attr            createAttributeNS(const DOMString &namespaceURI,
  503. const DOMString &qualifiedName);
  504.     /**
  505.      * Returns a <code>DOM_NodeList</code> of all the <code>DOM_Element</code>s
  506.      * with a given <em>local name</em> and
  507.      * namespace URI in the order in which they would be encountered in a
  508.      * preorder traversal of the <code>DOM_Document</code> tree.
  509.      *
  510.      * <p><b>"Experimental - subject to change"</b></p>
  511.      *
  512.      * @param namespaceURI The <em>namespace URI</em> of
  513.      *   the elements to match on. The special value "*" matches all
  514.      *   namespaces.
  515.      * @param localName The <em>local name</em> of the
  516.      *   elements to match on. The special value "*" matches all local names.
  517.      * @return A new <code>DOM_NodeList</code> object containing all the matched
  518.      *  <code>DOM_Element</code>s.
  519.      */
  520.     DOM_NodeList        getElementsByTagNameNS(const DOMString &namespaceURI,
  521. const DOMString &localName) const;
  522.     /**
  523.      * Returns the <code>DOM_Element</code> whose ID is given by <code>elementId</code>.
  524.      * If no such element exists, returns <code>null</code>.
  525.      * Behavior is not defined if more than one element has this <code>ID</code>.
  526.      * <P><B>Note:</B> The DOM implementation must have information that says
  527.      * which attributes are of type ID. Attributes with the name "ID" are not of
  528.      * type ID unless so defined. Implementations that do not know whether
  529.      * attributes are of type ID or not are expected to return
  530.      * <CODE>null</CODE>.</P>
  531.      *
  532.      * <p><b>"Experimental - subject to change"</b></p>
  533.      *
  534.      * @param elementId The unique <code>id</code> value for an element.
  535.      * @return The matching element.
  536.      */
  537.     DOM_Element         getElementById(const DOMString &elementId);
  538.     /**
  539.      * Sets whether the DOM implementation performs error checking
  540.      * upon operations. Turning off error checking only affects
  541.      * the following DOM checks:
  542.      * <ul>
  543.      * <li>Checking strings to make sure that all characters are
  544.      *     legal XML characters
  545.      * <li>Hierarchy checking such as allowed children, checks for
  546.      *     cycles, etc.
  547.      * </ul>
  548.      * <p>
  549.      * Turning off error checking does <em>not</em> turn off the
  550.      * following checks:
  551.      * <ul>
  552.      * <li>Read only checks
  553.      * <li>Checks related to DOM events
  554.      * </ul>
  555.      */
  556.     void setErrorChecking(bool check);
  557.     /**
  558.      * Returns true if the DOM implementation performs error checking.
  559.      */
  560.     bool getErrorChecking();
  561.     //@}
  562. protected:
  563.     DOM_Document (DocumentImpl *impl);
  564.     friend class DOM_Node;
  565.     friend class DocumentImpl;
  566.     friend class NodeIteratorImpl;
  567.     friend class DOM_DOMImplementation;
  568. };
  569. #endif