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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMNode_HEADER_GUARD_
  2. #define DOMNode_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  *
  6.  * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  7.  * reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  *
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  *
  21.  * 3. The end-user documentation included with the redistribution,
  22.  *    if any, must include the following acknowledgment:
  23.  *       "This product includes software developed by the
  24.  *        Apache Software Foundation (http://www.apache.org/)."
  25.  *    Alternately, this acknowledgment may appear in the software itself,
  26.  *    if and wherever such third-party acknowledgments normally appear.
  27.  *
  28.  * 4. The names "Xerces" and "Apache Software Foundation" must
  29.  *    not be used to endorse or promote products derived from this
  30.  *    software without prior written permission. For written
  31.  *    permission, please contact apache@apache.org.
  32.  *
  33.  * 5. Products derived from this software may not be called "Apache",
  34.  *    nor may "Apache" appear in their name, without prior written
  35.  *    permission of the Apache Software Foundation.
  36.  *
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  * ====================================================================
  50.  *
  51.  * This software consists of voluntary contributions made by many
  52.  * individuals on behalf of the Apache Software Foundation, and was
  53.  * originally based on software copyright (c) 2001, International
  54.  * Business Machines, Inc., http://www.ibm.com .  For more information
  55.  * on the Apache Software Foundation, please see
  56.  * <http://www.apache.org/>.
  57.  */
  58. /*
  59.  * $Id: DOMNode.hpp,v 1.15 2003/05/05 21:21:15 neilg Exp $
  60.  */
  61. #include <xercesc/util/XercesDefs.hpp>
  62. XERCES_CPP_NAMESPACE_BEGIN
  63. class DOMDocument;
  64. class DOMNamedNodeMap;
  65. class DOMNodeList;
  66. class DOMUserDataHandler;
  67. /**
  68.  * The <code>DOMNode</code> interface is the primary datatype for the entire
  69.  * Document Object Model. It represents a single node in the document tree.
  70.  * While all objects implementing the <code>DOMNode</code> interface expose
  71.  * methods for dealing with children, not all objects implementing the
  72.  * <code>DOMNode</code> interface may have children. For example,
  73.  * <code>DOMText</code> nodes may not have children, and adding children to
  74.  * such nodes results in a <code>DOMException</code> being raised.
  75.  * <p>The attributes <code>nodeName</code>, <code>nodeValue</code> and
  76.  * <code>attributes</code> are included as a mechanism to get at node
  77.  * information without casting down to the specific derived interface. In
  78.  * cases where there is no obvious mapping of these attributes for a
  79.  * specific <code>nodeType</code> (e.g., <code>nodeValue</code> for an
  80.  * <code>DOMElement</code> or <code>attributes</code> for a <code>DOMComment</code>
  81.  * ), this returns <code>null</code>. Note that the specialized interfaces
  82.  * may contain additional and more convenient mechanisms to get and set the
  83.  * relevant information.
  84.  * <p>The values of <code>nodeName</code>,
  85.  * <code>nodeValue</code>, and <code>attributes</code> vary according to the
  86.  * node type as follows:
  87.  * <table border='1'>
  88.  * <tr>
  89.  * <td>Interface</td>
  90.  * <td>nodeName</td>
  91.  * <td>nodeValue</td>
  92.  * <td>attributes</td>
  93.  * </tr>
  94.  * <tr>
  95.  * <td valign='top' rowspan='1' colspan='1'>DOMAttr</td>
  96.  * <td valign='top' rowspan='1' colspan='1'>name of
  97.  * attribute</td>
  98.  * <td valign='top' rowspan='1' colspan='1'>value of attribute</td>
  99.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  100.  * </tr>
  101.  * <tr>
  102.  * <td valign='top' rowspan='1' colspan='1'>DOMCDATASection</td>
  103.  * <td valign='top' rowspan='1' colspan='1'><code>"#cdata-section"</code></td>
  104.  * <td valign='top' rowspan='1' colspan='1'>
  105.  * content of the CDATA Section</td>
  106.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  107.  * </tr>
  108.  * <tr>
  109.  * <td valign='top' rowspan='1' colspan='1'>DOMComment</td>
  110.  * <td valign='top' rowspan='1' colspan='1'><code>"#comment"</code></td>
  111.  * <td valign='top' rowspan='1' colspan='1'>content of
  112.  * the comment</td>
  113.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  114.  * </tr>
  115.  * <tr>
  116.  * <td valign='top' rowspan='1' colspan='1'>DOMDocument</td>
  117.  * <td valign='top' rowspan='1' colspan='1'><code>"#document"</code></td>
  118.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  119.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  120.  * </tr>
  121.  * <tr>
  122.  * <td valign='top' rowspan='1' colspan='1'>DOMDocumentFragment</td>
  123.  * <td valign='top' rowspan='1' colspan='1'>
  124.  * <code>"#document-fragment"</code></td>
  125.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  126.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  127.  * </tr>
  128.  * <tr>
  129.  * <td valign='top' rowspan='1' colspan='1'>DOMDocumentType</td>
  130.  * <td valign='top' rowspan='1' colspan='1'>document type name</td>
  131.  * <td valign='top' rowspan='1' colspan='1'>
  132.  * null</td>
  133.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  134.  * </tr>
  135.  * <tr>
  136.  * <td valign='top' rowspan='1' colspan='1'>DOMElement</td>
  137.  * <td valign='top' rowspan='1' colspan='1'>tag name</td>
  138.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  139.  * <td valign='top' rowspan='1' colspan='1'>NamedNodeMap</td>
  140.  * </tr>
  141.  * <tr>
  142.  * <td valign='top' rowspan='1' colspan='1'>DOMEntity</td>
  143.  * <td valign='top' rowspan='1' colspan='1'>entity name</td>
  144.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  145.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  146.  * </tr>
  147.  * <tr>
  148.  * <td valign='top' rowspan='1' colspan='1'>DOMEntityReference</td>
  149.  * <td valign='top' rowspan='1' colspan='1'>name of entity referenced</td>
  150.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  151.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  152.  * </tr>
  153.  * <tr>
  154.  * <td valign='top' rowspan='1' colspan='1'>DOMNotation</td>
  155.  * <td valign='top' rowspan='1' colspan='1'>notation name</td>
  156.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  157.  * <td valign='top' rowspan='1' colspan='1'>
  158.  * null</td>
  159.  * </tr>
  160.  * <tr>
  161.  * <td valign='top' rowspan='1' colspan='1'>DOMProcessingInstruction</td>
  162.  * <td valign='top' rowspan='1' colspan='1'>target</td>
  163.  * <td valign='top' rowspan='1' colspan='1'>entire content excluding the target</td>
  164.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  165.  * </tr>
  166.  * <tr>
  167.  * <td valign='top' rowspan='1' colspan='1'>DOMText</td>
  168.  * <td valign='top' rowspan='1' colspan='1'>
  169.  * <code>"#text"</code></td>
  170.  * <td valign='top' rowspan='1' colspan='1'>content of the text node</td>
  171.  * <td valign='top' rowspan='1' colspan='1'>null</td>
  172.  * </tr>
  173.  * </table>
  174.  * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>Document Object Model (DOM) Level 2 Core Specification</a>.
  175.  *
  176.  * @since DOM Level 1
  177.  */
  178. class  CDOM_EXPORT DOMNode {
  179. protected:
  180.     // -----------------------------------------------------------------------
  181.     //  Hidden constructors
  182.     // -----------------------------------------------------------------------
  183.     /** @name Hidden constructors */
  184.     //@{    
  185.     DOMNode() {};
  186.     //@}
  187. private:    
  188.     // -----------------------------------------------------------------------
  189.     // Unimplemented constructors and operators
  190.     // -----------------------------------------------------------------------
  191.     /** @name Unimplemented constructors and operators */
  192.     //@{
  193.     DOMNode(const DOMNode &);
  194.     DOMNode & operator = (const DOMNode &);
  195.     //@}
  196. public:
  197.     // -----------------------------------------------------------------------
  198.     //  All constructors are hidden, just the destructor is available
  199.     // -----------------------------------------------------------------------
  200.     /** @name Destructor */
  201.     //@{
  202.     /**
  203.      * Destructor
  204.      *
  205.      */
  206.     virtual ~DOMNode() {};
  207.     //@}
  208.     // -----------------------------------------------------------------------
  209.     //  Class Types
  210.     // -----------------------------------------------------------------------
  211.     /** @name Public Contants */
  212.     //@{
  213.     /**
  214.      * NodeType
  215.      *
  216.      * @since DOM Level 1
  217.      */
  218.     enum NodeType {
  219.         ELEMENT_NODE                = 1,
  220.         ATTRIBUTE_NODE              = 2,
  221.         TEXT_NODE                   = 3,
  222.         CDATA_SECTION_NODE          = 4,
  223.         ENTITY_REFERENCE_NODE       = 5,
  224.         ENTITY_NODE                 = 6,
  225.         PROCESSING_INSTRUCTION_NODE = 7,
  226.         COMMENT_NODE                = 8,
  227.         DOCUMENT_NODE               = 9,
  228.         DOCUMENT_TYPE_NODE          = 10,
  229.         DOCUMENT_FRAGMENT_NODE      = 11,
  230.         NOTATION_NODE               = 12
  231.     };
  232.     /**
  233.      * TreePosition:
  234.      *
  235.      * <p><b>"Experimental - subject to change"</b></p>
  236.      *
  237.      * <p><code>TREE_POSITION_PRECEDING:</code>
  238.      * The node precedes the reference node.</p>
  239.      * <p><code>TREE_POSITION_FOLLOWING:</code>
  240.      * The node follows the reference node.</p>
  241.      * <p><code>TREE_POSITION_ANCESTOR:</code>
  242.      * The node is an ancestor of the reference node.</p>
  243.      * <p><code>TREE_POSITION_DESCENDANT:</code>
  244.      * The node is a descendant of the reference node.</p>
  245.      * <p><code>TREE_POSITION_EQUIVALENT:</code>
  246.      * The two nodes have an equivalent position. This is the case of two
  247.      * attributes that have the same <code>ownerElement</code>, and two
  248.      * nodes that are the same.</p>
  249.      * <p><code>TREE_POSITION_SAME_NODE:</code>
  250.      * The two nodes are the same. Two nodes that are the same have an
  251.      * equivalent position, though the reverse may not be true.</p>
  252.      * <p><code>TREE_POSITION_DISCONNECTED:</code>
  253.      * The two nodes are disconnected, they do not have any common ancestor.
  254.      * This is the case of two nodes that are not in the same document.</p>
  255.      *
  256.      * @since DOM Level 3
  257.      */
  258.     enum DOMTreePosition {
  259.         TREE_POSITION_PRECEDING   = 0x01,
  260.         TREE_POSITION_FOLLOWING   = 0x02,
  261.         TREE_POSITION_ANCESTOR    = 0x04,
  262.         TREE_POSITION_DESCENDANT  = 0x08,
  263.         TREE_POSITION_EQUIVALENT  = 0x10,
  264.         TREE_POSITION_SAME_NODE   = 0x20,
  265.         TREE_POSITION_DISCONNECTED = 0x00
  266.     };
  267.     //@}
  268.     // -----------------------------------------------------------------------
  269.     //  Virtual DOMNode interface
  270.     // -----------------------------------------------------------------------
  271.     /** @name Functions introduced in DOM Level 1 */
  272.     //@{
  273.     // -----------------------------------------------------------------------
  274.     //  Getter methods
  275.     // -----------------------------------------------------------------------
  276.     /**
  277.      * The name of this node, depending on its type; see the table above.
  278.      * @since DOM Level 1
  279.      */
  280.     virtual const XMLCh *   getNodeName() const = 0;
  281.     /**
  282.      * Gets the value of this node, depending on its type.
  283.      *
  284.      * @exception DOMException
  285.      *   NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
  286.      * @since DOM Level 1
  287.      */
  288.     virtual const XMLCh *       getNodeValue() const = 0;
  289.     /**
  290.      * An enum value representing the type of the underlying object.
  291.      * @since DOM Level 1
  292.      */
  293.     virtual short           getNodeType() const = 0;
  294.     /**
  295.      * Gets the parent of this node.
  296.      *
  297.      * All nodes, except <code>DOMDocument</code>,
  298.      * <code>DOMDocumentFragment</code>, and <code>DOMAttr</code> may have a parent.
  299.      * However, if a node has just been created and not yet added to the tree,
  300.      * or if it has been removed from the tree, a <code>null</code> DOMNode
  301.      * is returned.
  302.      * @since DOM Level 1
  303.      */
  304.     virtual DOMNode        *getParentNode() const = 0;
  305.     /**
  306.      * Gets a <code>DOMNodeList</code> that contains all children of this node.
  307.      *
  308.      * If there
  309.      * are no children, this is a <code>DOMNodeList</code> containing no nodes.
  310.      * The content of the returned <code>DOMNodeList</code> is "live" in the sense
  311.      * that, for instance, changes to the children of the node object that
  312.      * it was created from are immediately reflected in the nodes returned by
  313.      * the <code>DOMNodeList</code> accessors; it is not a static snapshot of the
  314.      * content of the node. This is true for every <code>DOMNodeList</code>,
  315.      * including the ones returned by the <code>getElementsByTagName</code>
  316.      * method.
  317.      * @since DOM Level 1
  318.      */
  319.     virtual DOMNodeList    *getChildNodes() const = 0;
  320.     /**
  321.      * Gets the first child of this node.
  322.      *
  323.      * If there is no such node, this returns <code>null</code>.
  324.      * @since DOM Level 1
  325.      */
  326.     virtual DOMNode        *getFirstChild() const = 0;
  327.     /**
  328.      * Gets the last child of this node.
  329.      *
  330.      * If there is no such node, this returns <code>null</code>.
  331.      * @since DOM Level 1
  332.      */
  333.     virtual DOMNode        *getLastChild() const = 0;
  334.     /**
  335.      * Gets the node immediately preceding this node.
  336.      *
  337.      * If there is no such node, this returns <code>null</code>.
  338.      * @since DOM Level 1
  339.      */
  340.     virtual DOMNode        *getPreviousSibling() const = 0;
  341.     /**
  342.      * Gets the node immediately following this node.
  343.      *
  344.      * If there is no such node, this returns <code>null</code>.
  345.      * @since DOM Level 1
  346.      */
  347.     virtual DOMNode        *getNextSibling() const = 0;
  348.     /**
  349.      * Gets a <code>DOMNamedNodeMap</code> containing the attributes of this node (if it
  350.      * is an <code>DOMElement</code>) or <code>null</code> otherwise.
  351.      * @since DOM Level 1
  352.      */
  353.     virtual DOMNamedNodeMap  *getAttributes() const = 0;
  354.     /**
  355.      * Gets the <code>DOMDocument</code> object associated with this node.
  356.      *
  357.      * This is also
  358.      * the <code>DOMDocument</code> object used to create new nodes. When this
  359.      * node is a <code>DOMDocument</code> or a <code>DOMDocumentType</code>
  360.      * which is not used with any <code>DOMDocument</code> yet, this is
  361.      * <code>null</code>.
  362.      *
  363.      * @since DOM Level 1
  364.      */
  365.     virtual DOMDocument      *getOwnerDocument() const = 0;
  366.     // -----------------------------------------------------------------------
  367.     //  Node methods
  368.     // -----------------------------------------------------------------------
  369.     /**
  370.      * Returns a duplicate of this node.
  371.      *
  372.      * This function serves as a generic copy constructor for nodes.
  373.      *
  374.      * The duplicate node has no parent (
  375.      * <code>parentNode</code> returns <code>null</code>.).
  376.      * <br>Cloning an <code>DOMElement</code> copies all attributes and their
  377.      * values, including those generated by the  XML processor to represent
  378.      * defaulted attributes, but this method does not copy any text it contains
  379.      * unless it is a deep clone, since the text is contained in a child
  380.      * <code>DOMText</code> node. Cloning any other type of node simply returns a
  381.      * copy of this node.
  382.      * @param deep If <code>true</code>, recursively clone the subtree under the
  383.      *   specified node; if <code>false</code>, clone only the node itself (and
  384.      *   its attributes, if it is an <code>DOMElement</code>).
  385.      * @return The duplicate node.
  386.      * @since DOM Level 1
  387.      */
  388.     virtual DOMNode        * cloneNode(bool deep) const = 0;
  389.     /**
  390.      * Inserts the node <code>newChild</code> before the existing child node
  391.      * <code>refChild</code>.
  392.      *
  393.      * If <code>refChild</code> is <code>null</code>,
  394.      * insert <code>newChild</code> at the end of the list of children.
  395.      * <br>If <code>newChild</code> is a <code>DOMDocumentFragment</code> object,
  396.      * all of its children are inserted, in the same order, before
  397.      * <code>refChild</code>. If the <code>newChild</code> is already in the
  398.      * tree, it is first removed.  Note that a <code>DOMNode</code> that
  399.      * has never been assigned to refer to an actual node is == null.
  400.      * @param newChild The node to insert.
  401.      * @param refChild The reference node, i.e., the node before which the new
  402.      *   node must be inserted.
  403.      * @return The node being inserted.
  404.      * @exception DOMException
  405.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  406.      *   allow children of the type of the <code>newChild</code> node, or if
  407.      *   the node to insert is one of this node's ancestors.
  408.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  409.      *   from a different document than the one that created this node.
  410.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the node being
  411.      *   inserted is readonly.
  412.      *   <br>NOT_FOUND_ERR: Raised if <code>refChild</code> is not a child of
  413.      *   this node.
  414.      * @since DOM Level 1
  415.      */
  416.     virtual DOMNode       *insertBefore(DOMNode *newChild,
  417.                                           DOMNode *refChild) = 0;
  418.     /**
  419.      * Replaces the child node <code>oldChild</code> with <code>newChild</code>
  420.      * in the list of children, and returns the <code>oldChild</code> node.
  421.      *
  422.      * If <CODE>newChild</CODE> is a <CODE>DOMDocumentFragment</CODE> object,
  423.      * <CODE>oldChild</CODE> is replaced by all of the <CODE>DOMDocumentFragment</CODE>
  424.      * children, which are inserted in the same order.
  425.      *
  426.      * If the <code>newChild</code> is already in the tree, it is first removed.
  427.      * @param newChild The new node to put in the child list.
  428.      * @param oldChild The node being replaced in the list.
  429.      * @return The node replaced.
  430.      * @exception DOMException
  431.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  432.      *   allow children of the type of the <code>newChild</code> node, or it
  433.      *   the node to put in is one of this node's ancestors.
  434.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  435.      *   from a different document than the one that created this node.
  436.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the new node is readonly.
  437.      *   <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
  438.      *   this node.
  439.      * @since DOM Level 1
  440.      */
  441.     virtual DOMNode  *replaceChild(DOMNode *newChild,
  442.                                      DOMNode *oldChild) = 0;
  443.     /**
  444.      * Removes the child node indicated by <code>oldChild</code> from the list
  445.      * of children, and returns it.
  446.      *
  447.      * @param oldChild The node being removed.
  448.      * @return The node removed.
  449.      * @exception DOMException
  450.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  451.      *   <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
  452.      *   this node.
  453.      * @since DOM Level 1
  454.      */
  455.     virtual DOMNode        *removeChild(DOMNode *oldChild) = 0;
  456.     /**
  457.      * Adds the node <code>newChild</code> to the end of the list of children of
  458.      * this node.
  459.      *
  460.      * If the <code>newChild</code> is already in the tree, it is
  461.      * first removed.
  462.      * @param newChild The node to add.If it is a  <code>DOMDocumentFragment</code>
  463.      *   object, the entire contents of the document fragment are moved into
  464.      *   the child list of this node
  465.      * @return The node added.
  466.      * @exception DOMException
  467.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  468.      *   allow children of the type of the <code>newChild</code> node, or if
  469.      *   the node to append is one of this node's ancestors.
  470.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  471.      *   from a different document than the one that created this node.
  472.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the node being
  473.      *   appended is readonly.
  474.      * @since DOM Level 1
  475.      */
  476.     virtual DOMNode        *appendChild(DOMNode *newChild) = 0;
  477.     // -----------------------------------------------------------------------
  478.     //  Query methods
  479.     // -----------------------------------------------------------------------
  480.     /**
  481.      *  This is a convenience method to allow easy determination of whether a
  482.      * node has any children.
  483.      *
  484.      * @return  <code>true</code> if the node has any children,
  485.      *   <code>false</code> if the node has no children.
  486.      * @since DOM Level 1
  487.      */
  488.     virtual bool             hasChildNodes() const = 0;
  489.     // -----------------------------------------------------------------------
  490.     //  Setter methods
  491.     // -----------------------------------------------------------------------
  492.     /**
  493.      * Sets the value of the node.
  494.      *
  495.      * Any node which can have a nodeValue (@see getNodeValue) will
  496.      * also accept requests to set it to a string. The exact response to
  497.      * this varies from node to node -- Attribute, for example, stores
  498.      * its values in its children and has to replace them with a new Text
  499.      * holding the replacement value.
  500.      *
  501.      * For most types of Node, value is null and attempting to set it
  502.      * will throw DOMException(NO_MODIFICATION_ALLOWED_ERR). This will
  503.      * also be thrown if the node is read-only.
  504.      * @since DOM Level 1
  505.      */
  506.     virtual void              setNodeValue(const XMLCh  *nodeValue) = 0;
  507.     //@}
  508.     /** @name Functions introduced in DOM Level 2. */
  509.     //@{
  510.     /**
  511.      * Puts all <CODE>DOMText</CODE>
  512.      * nodes in the full depth of the sub-tree underneath this <CODE>DOMNode</CODE>,
  513.      * including attribute nodes, into a "normal" form where only markup (e.g.,
  514.      * tags, comments, processing instructions, CDATA sections, and entity
  515.      * references) separates <CODE>DOMText</CODE>
  516.      * nodes, i.e., there are neither adjacent <CODE>DOMText</CODE>
  517.      * nodes nor empty <CODE>DOMText</CODE>
  518.      * nodes. This can be used to ensure that the DOM view of a document is the
  519.      * same as if it were saved and re-loaded, and is useful when operations
  520.      * (such as XPointer lookups) that depend on a particular document tree
  521.      * structure are to be used.
  522.      * <P><B>Note:</B> In cases where the document contains <CODE>DOMCDATASections</CODE>,
  523.      * the normalize operation alone may not be sufficient, since XPointers do
  524.      * not differentiate between <CODE>DOMText</CODE>
  525.      * nodes and <CODE>DOMCDATASection</CODE>
  526.      * nodes.</P>
  527.      *
  528.      * @since DOM Level 2
  529.      */
  530.     virtual void              normalize() = 0;
  531.     /**
  532.      * Tests whether the DOM implementation implements a specific
  533.      * feature and that feature is supported by this node.
  534.      *
  535.      * @param feature The string of the feature to test. This is the same
  536.      * name as what can be passed to the method <code>hasFeature</code> on
  537.      * <code>DOMImplementation</code>.
  538.      * @param version This is the version number of the feature to test. In
  539.      * Level 2, version 1, this is the string "2.0". If the version is not
  540.      * specified, supporting any version of the feature will cause the
  541.      * method to return <code>true</code>.
  542.      * @return Returns <code>true</code> if the specified feature is supported
  543.      * on this node, <code>false</code> otherwise.
  544.      * @since DOM Level 2
  545.      */
  546.     virtual bool              isSupported(const XMLCh *feature,
  547.                                        const XMLCh *version) const = 0;
  548.     /**
  549.      * Get the <em>namespace URI</em> of
  550.      * this node, or <code>null</code> if it is unspecified.
  551.      * <p>
  552.      * This is not a computed value that is the result of a namespace lookup
  553.      * based on an examination of the namespace declarations in scope. It is
  554.      * merely the namespace URI given at creation time.
  555.      * <p>
  556.      * For nodes of any type other than <CODE>ELEMENT_NODE</CODE> and
  557.      * <CODE>ATTRIBUTE_NODE</CODE> and nodes created with a DOM Level 1 method,
  558.      * such as <CODE>createElement</CODE> from the <CODE>DOMDocument</CODE>
  559.      * interface, this is always <CODE>null</CODE>.
  560.      *
  561.      * @since DOM Level 2
  562.      */
  563.     virtual const XMLCh *         getNamespaceURI() const = 0;
  564.     /**
  565.      * Get the <em>namespace prefix</em>
  566.      * of this node, or <code>null</code> if it is unspecified.
  567.      *
  568.      * @since DOM Level 2
  569.      */
  570.     virtual const XMLCh *          getPrefix() const = 0;
  571.     /**
  572.      * Returns the local part of the <em>qualified name</em> of this node.
  573.      * <p>
  574.      * For nodes created with a DOM Level 1 method, such as
  575.      * <code>createElement</code> from the <code>DOMDocument</code> interface,
  576.      * it is null.
  577.      *
  578.      * @since DOM Level 2
  579.      */
  580.     virtual const XMLCh *          getLocalName() const = 0;
  581.     /**
  582.      * Set the <em>namespace prefix</em> of this node.
  583.      * <p>
  584.      * Note that setting this attribute, when permitted, changes
  585.      * the <CODE>nodeName</CODE> attribute, which holds the <EM>qualified
  586.      * name</EM>, as well as the <CODE>tagName</CODE> and <CODE>name</CODE>
  587.      * attributes of the <CODE>DOMElement</CODE> and <CODE>DOMAttr</CODE>
  588.      * interfaces, when applicable.
  589.      * <p>
  590.      * Note also that changing the prefix of an
  591.      * attribute, that is known to have a default value, does not make a new
  592.      * attribute with the default value and the original prefix appear, since the
  593.      * <CODE>namespaceURI</CODE> and <CODE>localName</CODE> do not change.
  594.      *
  595.      *
  596.      * @param prefix The prefix of this node.
  597.      * @exception DOMException
  598.      *   INVALID_CHARACTER_ERR: Raised if the specified prefix contains
  599.      *                          an illegal character.
  600.      * <br>
  601.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  602.      * <br>
  603.      *   NAMESPACE_ERR: Raised if the specified <CODE>prefix</CODE> is
  604.      *      malformed, if the <CODE>namespaceURI</CODE> of this node is
  605.      *      <CODE>null</CODE>, if the specified prefix is "xml" and the
  606.      *      <CODE>namespaceURI</CODE> of this node is different from
  607.      *      "http://www.w3.org/XML/1998/namespace", if this node is an attribute
  608.      *      and the specified prefix is "xmlns" and the
  609.      *      <CODE>namespaceURI</CODE> of this node is different from
  610.      *      "http://www.w3.org/2000/xmlns/", or if this node is an attribute and
  611.      *      the <CODE>qualifiedName</CODE> of this node is "xmlns".
  612.      * @since DOM Level 2
  613.      */
  614.     virtual void              setPrefix(const XMLCh * prefix) = 0;
  615.     /**
  616.      *  Returns whether this node (if it is an element) has any attributes.
  617.      * @return <code>true</code> if this node has any attributes,
  618.      *   <code>false</code> otherwise.
  619.      * @since DOM Level 2
  620.      */
  621.     virtual bool              hasAttributes() const = 0;
  622.     //@}
  623.     /** @name Functions introduced in DOM Level 3. */
  624.     //@{
  625.     /**
  626.      * Returns whether this node is the same node as the given one.
  627.      * <br>This method provides a way to determine whether two
  628.      * <code>DOMNode</code> references returned by the implementation reference
  629.      * the same object. When two <code>DOMNode</code> references are references
  630.      * to the same object, even if through a proxy, the references may be
  631.      * used completely interchangeably, such that all attributes have the
  632.      * same values and calling the same DOM method on either reference
  633.      * always has exactly the same effect.
  634.      *
  635.      * <p><b>"Experimental - subject to change"</b></p>
  636.      *
  637.      * @param other The node to test against.
  638.      * @return Returns <code>true</code> if the nodes are the same,
  639.      *   <code>false</code> otherwise.
  640.      * @since DOM Level 3
  641.      */
  642.     virtual bool              isSameNode(const DOMNode* other) const = 0;
  643.     /**
  644.      * Tests whether two nodes are equal.
  645.      * <br>This method tests for equality of nodes, not sameness (i.e.,
  646.      * whether the two nodes are pointers to the same object) which can be
  647.      * tested with <code>DOMNode::isSameNode</code>. All nodes that are the same
  648.      * will also be equal, though the reverse may not be true.
  649.      * <br>Two nodes are equal if and only if the following conditions are
  650.      * satisfied: The two nodes are of the same type.The following string
  651.      * attributes are equal: <code>nodeName</code>, <code>localName</code>,
  652.      * <code>namespaceURI</code>, <code>prefix</code>, <code>nodeValue</code>
  653.      * , <code>baseURI</code>. This is: they are both <code>null</code>, or
  654.      * they have the same length and are character for character identical.
  655.      * The <code>attributes</code> <code>DOMNamedNodeMaps</code> are equal.
  656.      * This is: they are both <code>null</code>, or they have the same
  657.      * length and for each node that exists in one map there is a node that
  658.      * exists in the other map and is equal, although not necessarily at the
  659.      * same index.The <code>childNodes</code> <code>DOMNodeLists</code> are
  660.      * equal. This is: they are both <code>null</code>, or they have the
  661.      * same length and contain equal nodes at the same index. This is true
  662.      * for <code>DOMAttr</code> nodes as for any other type of node. Note that
  663.      * normalization can affect equality; to avoid this, nodes should be
  664.      * normalized before being compared.
  665.      * <br>For two <code>DOMDocumentType</code> nodes to be equal, the following
  666.      * conditions must also be satisfied: The following string attributes
  667.      * are equal: <code>publicId</code>, <code>systemId</code>,
  668.      * <code>internalSubset</code>.The <code>entities</code>
  669.      * <code>DOMNamedNodeMaps</code> are equal.The <code>notations</code>
  670.      * <code>DOMNamedNodeMaps</code> are equal.
  671.      * <br>On the other hand, the following do not affect equality: the
  672.      * <code>ownerDocument</code> attribute, the <code>specified</code>
  673.      * attribute for <code>DOMAttr</code> nodes, the
  674.      * <code>isWhitespaceInElementContent</code> attribute for
  675.      * <code>DOMText</code> nodes, as well as any user data or event listeners
  676.      * registered on the nodes.
  677.      *
  678.      * <p><b>"Experimental - subject to change"</b></p>
  679.      *
  680.      * @param arg The node to compare equality with.
  681.      * @return If the nodes, and possibly subtrees are equal,
  682.      *   <code>true</code> otherwise <code>false</code>.
  683.      * @since DOM Level 3
  684.      */
  685.     virtual bool              isEqualNode(const DOMNode* arg) const = 0;
  686.     /**
  687.      * Associate an object to a key on this node. The object can later be
  688.      * retrieved from this node by calling <code>getUserData</code> with the
  689.      * same key.
  690.      *
  691.      * Deletion of the user data remains the responsibility of the
  692.      * application program; it will not be automatically deleted when
  693.      * the nodes themselves are reclaimed.
  694.      *
  695.      * Both the parameter <code>data</code> and the returned object are
  696.      * void pointer, it is applications' responsibility to keep track of
  697.      * their original type.  Casting them to the wrong type may result
  698.      * unexpected behavior.
  699.      *
  700.      * <p><b>"Experimental - subject to change"</b></p>
  701.      *
  702.      * @param key The key to associate the object to.
  703.      * @param data The object to associate to the given key, or
  704.      *   <code>null</code> to remove any existing association to that key.
  705.      * @param handler The handler to associate to that key, or
  706.      *   <code>null</code>.
  707.      * @return Returns the void* object previously associated to
  708.      *   the given key on this node, or <code>null</code> if there was none.
  709.      * @see getUserData
  710.      *
  711.      * @since DOM Level 3
  712.      */
  713.     virtual void*             setUserData(const XMLCh* key,
  714.                                           void* data,
  715.                                           DOMUserDataHandler* handler) = 0;
  716.     /**
  717.      * Retrieves the object associated to a key on a this node. The object
  718.      * must first have been set to this node by calling
  719.      * <code>setUserData</code> with the same key.
  720.      *
  721.      * <p><b>"Experimental - subject to change"</b></p>
  722.      *
  723.      * @param key The key the object is associated to.
  724.      * @return Returns the <code>void*</code> associated to the given key
  725.      *   on this node, or <code>null</code> if there was none.
  726.      * @see setUserData
  727.      * @since DOM Level 3
  728.      */
  729.     virtual void*             getUserData(const XMLCh* key) const = 0;
  730.     /**
  731.      * The absolute base URI of this node or <code>null</code> if undefined.
  732.      * This value is computed according to . However, when the
  733.      * <code>DOMDocument</code> supports the feature "HTML" , the base URI is
  734.      * computed using first the value of the href attribute of the HTML BASE
  735.      * element if any, and the value of the <code>documentURI</code>
  736.      * attribute from the <code>DOMDocument</code> interface otherwise.
  737.      *
  738.      * <p><b>"Experimental - subject to change"</b></p>
  739.      *
  740.      * <br> When the node is an <code>DOMElement</code>, a <code>DOMDocument</code>
  741.      * or a a <code>DOMProcessingInstruction</code>, this attribute represents
  742.      * the properties [base URI] defined in . When the node is a
  743.      * <code>DOMNotation</code>, an <code>DOMEntity</code>, or an
  744.      * <code>DOMEntityReference</code>, this attribute represents the
  745.      * properties [declaration base URI].
  746.      * @since DOM Level 3
  747.      */
  748.     virtual const XMLCh*           getBaseURI() const = 0;
  749.     /**
  750.      * Compares a node with this node with regard to their position in the
  751.      * tree and according to the document order. This order can be extended
  752.      * by module that define additional types of nodes.
  753.      *
  754.      * <p><b>"Experimental - subject to change"</b></p>
  755.      *
  756.      * @param other The node to compare against this node.
  757.      * @return Returns how the given node is positioned relatively to this
  758.      *   node.
  759.      * @since DOM Level 3
  760.      */
  761.     virtual short                  compareTreePosition(const DOMNode* other) const = 0;
  762.     /**
  763.      * This attribute returns the text content of this node and its
  764.      * descendants. When it is defined to be null, setting it has no effect.
  765.      * When set, any possible children this node may have are removed and
  766.      * replaced by a single <code>DOMText</code> node containing the string
  767.      * this attribute is set to. On getting, no serialization is performed,
  768.      * the returned string does not contain any markup. No whitespace
  769.      * normalization is performed, the returned string does not contain the
  770.      * element content whitespaces . Similarly, on setting, no parsing is
  771.      * performed either, the input string is taken as pure textual content.
  772.      *
  773.      * <p><b>"Experimental - subject to change"</b></p>
  774.      *
  775.      * <br>The string returned is made of the text content of this node
  776.      * depending on its type, as defined below:
  777.      * <table border='1'>
  778.      * <tr>
  779.      * <th>Node type</th>
  780.      * <th>Content</th>
  781.      * </tr>
  782.      * <tr>
  783.      * <td valign='top' rowspan='1' colspan='1'>
  784.      * ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE,
  785.      * DOCUMENT_FRAGMENT_NODE</td>
  786.      * <td valign='top' rowspan='1' colspan='1'>concatenation of the <code>textContent</code>
  787.      * attribute value of every child node, excluding COMMENT_NODE and
  788.      * PROCESSING_INSTRUCTION_NODE nodes</td>
  789.      * </tr>
  790.      * <tr>
  791.      * <td valign='top' rowspan='1' colspan='1'>ATTRIBUTE_NODE, TEXT_NODE,
  792.      * CDATA_SECTION_NODE, COMMENT_NODE, PROCESSING_INSTRUCTION_NODE</td>
  793.      * <td valign='top' rowspan='1' colspan='1'>
  794.      * <code>nodeValue</code></td>
  795.      * </tr>
  796.      * <tr>
  797.      * <td valign='top' rowspan='1' colspan='1'>DOCUMENT_NODE, DOCUMENT_TYPE_NODE, NOTATION_NODE</td>
  798.      * <td valign='top' rowspan='1' colspan='1'>
  799.      * null</td>
  800.      * </tr>
  801.      * </table>
  802.      * @exception DOMException
  803.      *   NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
  804.      * @exception DOMException
  805.      *   DOMSTRING_SIZE_ERR: Raised when it would return more characters than
  806.      *   fit in a <code>DOMString</code> variable on the implementation
  807.      *   platform.
  808.      * @since DOM Level 3
  809.      */
  810.     virtual const XMLCh*           getTextContent() const = 0;
  811.     /**
  812.      * This attribute returns the text content of this node and its
  813.      * descendants. When it is defined to be null, setting it has no effect.
  814.      * When set, any possible children this node may have are removed and
  815.      * replaced by a single <code>DOMText</code> node containing the string
  816.      * this attribute is set to. On getting, no serialization is performed,
  817.      * the returned string does not contain any markup. No whitespace
  818.      * normalization is performed, the returned string does not contain the
  819.      * element content whitespaces . Similarly, on setting, no parsing is
  820.      * performed either, the input string is taken as pure textual content.
  821.      *
  822.      * <p><b>"Experimental - subject to change"</b></p>
  823.      *
  824.      * <br>The string returned is made of the text content of this node
  825.      * depending on its type, as defined below:
  826.      * <table border='1'>
  827.      * <tr>
  828.      * <th>Node type</th>
  829.      * <th>Content</th>
  830.      * </tr>
  831.      * <tr>
  832.      * <td valign='top' rowspan='1' colspan='1'>
  833.      * ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE,
  834.      * DOCUMENT_FRAGMENT_NODE</td>
  835.      * <td valign='top' rowspan='1' colspan='1'>concatenation of the <code>textContent</code>
  836.      * attribute value of every child node, excluding COMMENT_NODE and
  837.      * PROCESSING_INSTRUCTION_NODE nodes</td>
  838.      * </tr>
  839.      * <tr>
  840.      * <td valign='top' rowspan='1' colspan='1'>ATTRIBUTE_NODE, TEXT_NODE,
  841.      * CDATA_SECTION_NODE, COMMENT_NODE, PROCESSING_INSTRUCTION_NODE</td>
  842.      * <td valign='top' rowspan='1' colspan='1'>
  843.      * <code>nodeValue</code></td>
  844.      * </tr>
  845.      * <tr>
  846.      * <td valign='top' rowspan='1' colspan='1'>DOCUMENT_NODE, DOCUMENT_TYPE_NODE, NOTATION_NODE</td>
  847.      * <td valign='top' rowspan='1' colspan='1'>
  848.      * null</td>
  849.      * </tr>
  850.      * </table>
  851.      * @exception DOMException
  852.      *   NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
  853.      * @exception DOMException
  854.      *   DOMSTRING_SIZE_ERR: Raised when it would return more characters than
  855.      *   fit in a <code>DOMString</code> variable on the implementation
  856.      *   platform.
  857.      * @since DOM Level 3
  858.      */
  859.     virtual void                   setTextContent(const XMLCh* textContent) = 0;
  860.     /**
  861.      * Look up the prefix associated to the given namespace URI, starting from
  862.      * this node.
  863.      *
  864.      * <p><b>"Experimental - subject to change"</b></p>
  865.      *
  866.      * @param namespaceURI The namespace URI to look for.
  867.      * @param useDefault  Indicates if the lookup mechanism should take into
  868.      *   account the default namespace or not.
  869.      * @return Returns an associated namespace prefix if found,
  870.      *   <code>null</code> if none is found and <code>useDefault</code> is
  871.      *   false, or <code>null</code> if not found or it is the default
  872.      *   namespace and <code>useDefault</code> is <code>true</code>. If more
  873.      *   than one prefix are associated to the namespace prefix, the
  874.      *   returned namespace prefix is implementation dependent.
  875.      * @since DOM Level 3
  876.      */
  877.     virtual const XMLCh*           lookupNamespacePrefix(const XMLCh* namespaceURI,
  878.                                                          bool useDefault) const = 0;
  879.     /**
  880.      * This method checks if the specified <code>namespaceURI</code> is the
  881.      * default namespace or not.
  882.      *
  883.      * <p><b>"Experimental - subject to change"</b></p>
  884.      *
  885.      * @param namespaceURI The namespace URI to look for.
  886.      * @return  <code>true</code> if the specified <code>namespaceURI</code>
  887.      *   is the default namespace, <code>false</code> otherwise.
  888.      * @since DOM Level 3
  889.      */
  890.     virtual bool                   isDefaultNamespace(const XMLCh* namespaceURI) const = 0;
  891.     /**
  892.      * Look up the namespace URI associated to the given prefix, starting from
  893.      * this node.
  894.      *
  895.      * <p><b>"Experimental - subject to change"</b></p>
  896.      *
  897.      * @param prefix The prefix to look for. If this parameter is
  898.      *   <code>null</code>, the method will return the default namespace URI
  899.      *   if any.
  900.      * @return Returns the associated namespace URI or <code>null</code> if
  901.      *   none is found.
  902.      * @since DOM Level 3
  903.      */
  904.     virtual const XMLCh*           lookupNamespaceURI(const XMLCh* prefix) const  = 0;
  905.     /**
  906.      * This method makes available a <code>DOMNode</code>'s specialized interface
  907.      *
  908.      * <p><b>"Experimental - subject to change"</b></p>
  909.      *
  910.      * @param feature The name of the feature requested (case-insensitive).
  911.      * @return Returns an alternate <code>DOMNode</code> which implements the
  912.      *   specialized APIs of the specified feature, if any, or
  913.      *   <code>null</code> if there is no alternate <code>DOMNode</code> which
  914.      *   implements interfaces associated with that feature. Any alternate
  915.      *   <code>DOMNode</code> returned by this method must delegate to the
  916.      *   primary core <code>DOMNode</code> and not return results inconsistent
  917.      *   with the primary core <code>DOMNode</code> such as <code>key</code>,
  918.      *   <code>attributes</code>, <code>childNodes</code>, etc.
  919.      * @since DOM Level 3
  920.      */
  921.     virtual DOMNode*               getInterface(const XMLCh* feature) = 0;
  922.     //@}
  923.     // -----------------------------------------------------------------------
  924.     //  Non-standard Extension
  925.     // -----------------------------------------------------------------------
  926.     /** @name Non-standard Extension */
  927.     //@{
  928.     /**
  929.      * Called to indicate that this Node (and its associated children) is no longer in use
  930.      * and that the implementation may relinquish any resources associated with it and
  931.      * its associated children.
  932.      *
  933.      * If this is a document, any nodes it owns (created by DOMDocument::createXXXX())
  934.      * are also released.
  935.      *
  936.      * Access to a released object will lead to unexpected result.
  937.      *
  938.      * @exception DOMException
  939.      *   INVALID_ACCESS_ERR: Raised if this Node has a parent and thus should not be released yet.
  940.      */
  941.     virtual void              release() = 0;
  942.     //@}     
  943. #if defined(XML_DOMREFCOUNT_EXPERIMENTAL)
  944.     // -----------------------------------------------------------------------
  945.     //  Non-standard Extension
  946.     // -----------------------------------------------------------------------
  947.     /** @name Non-standard Extension */
  948.     //@{
  949.     /**
  950.  * This is custom function which can be implemented by classes deriving
  951.  * from DOMNode for implementing reference counting on DOMNodes. Any
  952.  * implementation which has memory management model which involves
  953.  * disposing of nodes immediately after being used can override this
  954.  * function to do that job.
  955.      */
  956.     virtual void decRefCount() {}
  957.     //@}
  958.     // -----------------------------------------------------------------------
  959.     //  Non-standard Extension
  960.     // -----------------------------------------------------------------------
  961.     /** @name Non-standard Extension */
  962.     //@{
  963.     /**
  964.  * This is custom function which can be implemented by classes deriving
  965.  * from DOMNode for implementing reference counting on DOMNodes.
  966.      */
  967.     virtual void incRefCount() {}
  968.     //@}
  969. #endif
  970. };
  971.  
  972. XERCES_CPP_NAMESPACE_END
  973. #endif