DOM_Document.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:25k
源码类别:

词法分析

开发平台:

Visual C++

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