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

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_Node.hpp,v 1.13 2001/05/11 13:25:20 tng Exp $
  58.  */
  59. #ifndef DOM_Node_HEADER_GUARD_
  60. #define DOM_Node_HEADER_GUARD_
  61. #include <util/XercesDefs.hpp>
  62. #include <dom/DOMString.hpp>
  63. class DOM_NodeList;
  64. class DOM_NamedNodeMap;
  65. class DOM_Document;
  66. class NodeImpl;
  67. class DOM_NullPtr;  // A dummy class, with no implementation, that is
  68.                     //  used as in overloaded functions as a way to
  69.                     //  pass 0 or null.
  70. /**
  71.  * The <code>Node</code> interface is the primary datatype for the entire
  72.  * Document Object Model.
  73.  *
  74.  * It represents a single node in the document tree.
  75.  * While all objects implementing the <code>Node</code> interface expose
  76.  * methods for dealing with children, not all objects implementing the
  77.  * <code>Node</code> interface may have children. For example,
  78.  * <code>Text</code> nodes may not have children, and adding children to such
  79.  * nodes results in a <code>DOMException</code> being raised.
  80.  * <p>The attributes <code>nodeName</code>, <code>nodeValue</code>  and
  81.  * <code>attributes</code> are  included as a mechanism to get at node
  82.  * information without  casting down to the specific derived interface. In
  83.  * cases where  there is no obvious mapping of these attributes for a specific
  84.  *  <code>nodeType</code> (e.g., <code>nodeValue</code> for an Element  or
  85.  * <code>attributes</code>  for a Comment), this returns <code>null</code>.
  86.  * Note that the  specialized interfaces may contain additional and more
  87.  * convenient mechanisms to get and set the relevant information.
  88.  */
  89. class  CDOM_EXPORT DOM_Node {
  90.     public:
  91.     /** @name Constructors and assignment operators */
  92.     //@{
  93.     /**
  94.       * Default constructor for DOM_Node.  The resulting object does not
  95.       * refer to an actual  node; it will compare == to 0, and is similar
  96.       * to a null object reference variable in Java.  It may subsequently be
  97.       * assigned to refer to an actual node.  "Acutal Nodes" will always
  98.       * be of some derived type, such as Element or Attr.
  99.       *
  100.       */
  101.     DOM_Node();
  102.     /**
  103.       * Copy constructor.
  104.       *
  105.       * @param other The object to be copied.
  106.       */
  107.     DOM_Node(const DOM_Node &other);
  108.     /**
  109.       * Assignment operator.
  110.       *
  111.       * @param other The source to be assigned.
  112.       */
  113.     DOM_Node & operator = (const DOM_Node &other);
  114.      /**
  115.       * Assignment operator.  This overloaded variant is provided for
  116.       *   the sole purpose of setting a DOM_Node reference variable to
  117.       *   zero.  Nulling out a reference variable in this way will decrement
  118.       *   the reference count on the underlying Node object that the variable
  119.       *   formerly referenced.  This effect is normally obtained when reference
  120.       *   variable goes out of scope, but zeroing them can be useful for
  121.       *   global instances, or for local instances that will remain in scope
  122.       *   for an extended time,  when the storage belonging to the underlying
  123.       *   node needs to be reclaimed.
  124.       *
  125.       * @param val.  Only a value of 0, or null, is allowed.
  126.       */
  127.     DOM_Node & operator = (const DOM_NullPtr *val);
  128.    //@}
  129.     /** @name Destructor. */
  130.     //@{
  131.  /**
  132.   * Destructor for DOM_Node.  The object being destroyed is the reference
  133.       * object, not the underlying node itself.
  134.   *
  135.   */
  136.     ~DOM_Node();
  137.     //@}
  138.     /** @name Equality and Inequality operators. */
  139.     //@{
  140.     /**
  141.      * The equality operator.  This compares to references to nodes, and
  142.      * returns true if they both refer to the same underlying node.  It
  143.      * is exactly analogous to Java's operator ==  on object reference
  144.      * variables.  This operator can not be used to compare the values
  145.      * of two different nodes in the document tree.
  146.      *
  147.      * @param other The object reference with which <code>this</code> object is compared
  148.      * @returns True if both <code>DOM_Node</code>s refer to the same
  149.      *  actual node, or are both null; return false otherwise.
  150.      */
  151.     bool operator == (const DOM_Node & other)const;
  152.     /**
  153.       *  Compare with a pointer.  Intended only to allow a convenient
  154.       *    comparison with null.
  155.       *
  156.       */
  157.     bool operator == (const DOM_NullPtr *other) const;
  158.     /**
  159.      * The inequality operator.  See operator ==.
  160.      *
  161.      */
  162.     bool operator != (const DOM_Node & other) const;
  163.      /**
  164.       *  Compare with a pointer.  Intended only to allow a convenient
  165.       *    comparison with null.
  166.       *
  167.       */
  168.    bool operator != (const DOM_NullPtr * other) const;
  169.     enum NodeType {
  170.         ELEMENT_NODE                = 1,
  171.         ATTRIBUTE_NODE              = 2,
  172.         TEXT_NODE                   = 3,
  173.         CDATA_SECTION_NODE          = 4,
  174.         ENTITY_REFERENCE_NODE       = 5,
  175.         ENTITY_NODE                 = 6,
  176.         PROCESSING_INSTRUCTION_NODE = 7,
  177.         COMMENT_NODE                = 8,
  178.         DOCUMENT_NODE               = 9,
  179.         DOCUMENT_TYPE_NODE          = 10,
  180.         DOCUMENT_FRAGMENT_NODE      = 11,
  181.         NOTATION_NODE               = 12,
  182.         XML_DECL_NODE               = 13
  183.     };
  184.     //@}
  185.     /** @name Get functions. */
  186.     //@{
  187.     /**
  188.      * The name of this node, depending on its type; see the table above.
  189.      */
  190.     DOMString       getNodeName() const;
  191.     /**
  192.      * Gets the value of this node, depending on its type.
  193.      *
  194.      * @exception DOMException
  195.      *   NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
  196.      * @exception DOMException
  197.      *   DOMSTRING_SIZE_ERR: Raised when it would return more characters than
  198.      *   fit in a <code>DOMString</code> variable on the implementation
  199.      *   platform.
  200.      */
  201.     DOMString       getNodeValue() const;
  202.     /**
  203.      * An enum value representing the type of the underlying object.
  204.      */
  205.     short           getNodeType() const;
  206.     /**
  207.      * Gets the parent of this node.
  208.      *
  209.      * All nodes, except <code>Document</code>,
  210.      * <code>DocumentFragment</code>, and <code>Attr</code> may have a parent.
  211.      * However, if a node has just been created and not yet added to the tree,
  212.      * or if it has been removed from the tree, a <code>null</code> DOM_Node
  213.      * is returned.
  214.      */
  215.     DOM_Node        getParentNode() const;
  216.     /**
  217.      * Gets a <code>NodeList</code> that contains all children of this node.
  218.      *
  219.      * If there
  220.      * are no children, this is a <code>NodeList</code> containing no nodes.
  221.      * The content of the returned <code>NodeList</code> is "live" in the sense
  222.      * that, for instance, changes to the children of the node object that
  223.      * it was created from are immediately reflected in the nodes returned by
  224.      * the <code>NodeList</code> accessors; it is not a static snapshot of the
  225.      * content of the node. This is true for every <code>NodeList</code>,
  226.      * including the ones returned by the <code>getElementsByTagName</code>
  227.      * method.
  228.      */
  229.     DOM_NodeList    getChildNodes() const;
  230.     /**
  231.      * Gets the first child of this node.
  232.      *
  233.      * If there is no such node, this returns <code>null</code>.
  234.      */
  235.     DOM_Node        getFirstChild() const;
  236.     /**
  237.      * Gets the last child of this node.
  238.      *
  239.      * If there is no such node, this returns <code>null</code>.
  240.      */
  241.     DOM_Node        getLastChild() const;
  242.     /**
  243.      * Gets the node immediately preceding this node.
  244.      *
  245.      * If there is no such node, this returns <code>null</code>.
  246.      */
  247.     DOM_Node        getPreviousSibling() const;
  248.     /**
  249.      * Gets the node immediately following this node.
  250.      *
  251.      * If there is no such node, this returns <code>null</code>.
  252.      */
  253.     DOM_Node        getNextSibling() const;
  254.     /**
  255.      * Gets a <code>NamedNodeMap</code> containing the attributes of this node (if it
  256.      * is an <code>Element</code>) or <code>null</code> otherwise.
  257.      */
  258.     DOM_NamedNodeMap  getAttributes() const;
  259.     /**
  260.      * Gets the <code>DOM_Document</code> object associated with this node.
  261.      *
  262.      * This is also
  263.      * the <code>DOM_Document</code> object used to create new nodes. When this
  264.      * node is a <code>DOM_Document</code> or a <code>DOM_DocumentType</code>
  265.      * which is not used with any <code>DOM_Document</code> yet, this is
  266.      * <code>null</code>.
  267.      *
  268.      * <p><b>"Experimental - subject to change"</b></p>
  269.      *
  270.      */
  271.     DOM_Document      getOwnerDocument() const;
  272.     /**
  273.       * Return the user data pointer.
  274.       *
  275.       * User data allows application programs
  276.       * to attach extra data to DOM nodes, and can be set using the
  277.       * function <code>DOM_Node::setUserData(p)</code>.
  278.       * @return The user data pointer.
  279.       */
  280.     void              *getUserData() const;
  281.     //@}
  282.     /** @name Cloning function. */
  283.     //@{
  284.     /**
  285.      * Returns a duplicate of this node.
  286.      *
  287.      * This function serves as a generic copy constructor for nodes.
  288.      *
  289.      * The duplicate node has no parent (
  290.      * <code>parentNode</code> returns <code>null</code>.).
  291.      * <br>Cloning an <code>Element</code> copies all attributes and their
  292.      * values, including those generated by the  XML processor to represent
  293.      * defaulted attributes, but this method does not copy any text it contains
  294.      * unless it is a deep clone, since the text is contained in a child
  295.      * <code>Text</code> node. Cloning any other type of node simply returns a
  296.      * copy of this node.
  297.      * @param deep If <code>true</code>, recursively clone the subtree under the
  298.      *   specified node; if <code>false</code>, clone only the node itself (and
  299.      *   its attributes, if it is an <code>Element</code>).
  300.      * @return The duplicate node.
  301.      */
  302.     DOM_Node         cloneNode(bool deep) const;
  303.     //@}
  304.     /** @name Functions to modify the DOM Node. */
  305.     //@{
  306.     /**
  307.      * Inserts the node <code>newChild</code> before the existing child node
  308.      * <code>refChild</code>.
  309.      *
  310.      * If <code>refChild</code> is <code>null</code>,
  311.      * insert <code>newChild</code> at the end of the list of children.
  312.      * <br>If <code>newChild</code> is a <code>DocumentFragment</code> object,
  313.      * all of its children are inserted, in the same order, before
  314.      * <code>refChild</code>. If the <code>newChild</code> is already in the
  315.      * tree, it is first removed.  Note that a <code>DOM_Node</code> that
  316.      * has never been assigned to refer to an actual node is == null.
  317.      * @param newChild The node to insert.
  318.      * @param refChild The reference node, i.e., the node before which the new
  319.      *   node must be inserted.
  320.      * @return The node being inserted.
  321.      * @exception DOMException
  322.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  323.      *   allow children of the type of the <code>newChild</code> node, or if
  324.      *   the node to insert is one of this node's ancestors.
  325.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  326.      *   from a different document than the one that created this node.
  327.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the node being
  328.      *   inserted is readonly.
  329.      *   <br>NOT_FOUND_ERR: Raised if <code>refChild</code> is not a child of
  330.      *   this node.
  331.      */
  332.     DOM_Node               insertBefore(const DOM_Node &newChild,
  333.                                         const DOM_Node &refChild);
  334.     /**
  335.      * Replaces the child node <code>oldChild</code> with <code>newChild</code>
  336.      * in the list of children, and returns the <code>oldChild</code> node.
  337.      *
  338.      * If <CODE>newChild</CODE> is a <CODE>DOM_DocumentFragment</CODE> object,
  339.      * <CODE>oldChild</CODE> is replaced by all of the <CODE>DOM_DocumentFragment</CODE>
  340.      * children, which are inserted in the same order.
  341.      *
  342.      * If the <code>newChild</code> is already in the tree, it is first removed.
  343.      * @param newChild The new node to put in the child list.
  344.      * @param oldChild The node being replaced in the list.
  345.      * @return The node replaced.
  346.      * @exception DOMException
  347.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  348.      *   allow children of the type of the <code>newChild</code> node, or it
  349.      *   the node to put in is one of this node's ancestors.
  350.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  351.      *   from a different document than the one that created this node.
  352.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the new node is readonly.
  353.      *   <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
  354.      *   this node.
  355.      */
  356.     DOM_Node       replaceChild(const DOM_Node &newChild,
  357.                                 const DOM_Node &oldChild);
  358.     /**
  359.      * Removes the child node indicated by <code>oldChild</code> from the list
  360.      * of children, and returns it.
  361.      *
  362.      * @param oldChild The node being removed.
  363.      * @return The node removed.
  364.      * @exception DOMException
  365.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  366.      *   <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
  367.      *   this node.
  368.      */
  369.     DOM_Node        removeChild(const DOM_Node &oldChild);
  370.     /**
  371.      * Adds the node <code>newChild</code> to the end of the list of children of
  372.      * this node.
  373.      *
  374.      * If the <code>newChild</code> is already in the tree, it is
  375.      * first removed.
  376.      * @param newChild The node to add.If it is a  <code>DocumentFragment</code>
  377.      *   object, the entire contents of the document fragment are moved into
  378.      *   the child list of this node
  379.      * @return The node added.
  380.      * @exception DOMException
  381.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  382.      *   allow children of the type of the <code>newChild</code> node, or if
  383.      *   the node to append is one of this node's ancestors.
  384.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  385.      *   from a different document than the one that created this node.
  386.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the node being
  387.      *   appended is readonly.
  388.      */
  389.     DOM_Node        appendChild(const DOM_Node &newChild);
  390.     //@}
  391.     /** @name Query functions. */
  392.     //@{
  393.     /**
  394.      *  This is a convenience method to allow easy determination of whether a
  395.      * node has any children.
  396.      *
  397.      * @return  <code>true</code> if the node has any children,
  398.      *   <code>false</code> if the node has no children.
  399.      */
  400.     bool             hasChildNodes() const;
  401.     /**
  402.      * Test whether this node is null.
  403.      *
  404.      * This C++ class, <code>DOM_Node<code>
  405.      * functions much like an object reference to an underlying Node, and
  406.      * this function tests for that reference being null.  Several DOM
  407.      * APIs, <code>Node.getNextSibling()</code> for example, can return null, and
  408.      * this function is used to test for that condition.
  409.      *
  410.      * <p>Operator == provides another way to perform this null test on a
  411.      * DOM_Node.
  412.      */
  413.     bool                    isNull() const;
  414.     //@}
  415.     /** @name Set functions. */
  416.     //@{
  417.     /**
  418.     * Sets the value of the node.
  419.     *
  420.     * Any node which can have a nodeValue (@see getNodeValue) will
  421.     * also accept requests to set it to a string. The exact response to
  422.     * this varies from node to node -- Attribute, for example, stores
  423.     * its values in its children and has to replace them with a new Text
  424.     * holding the replacement value.
  425.     *
  426.     * For most types of Node, value is null and attempting to set it
  427.     * will throw DOMException(NO_MODIFICATION_ALLOWED_ERR). This will
  428.     * also be thrown if the node is read-only.
  429.     */
  430.     void              setNodeValue(const DOMString &nodeValue);
  431.     /**
  432.       * Set the user data for a node.
  433.       *
  434.       * User data allows application programs
  435.       * to attach extra data to DOM nodes, and can be retrieved using the
  436.       * function <code>DOM_Node::getUserData(p)</code>.
  437.       * <p>
  438.       * Deletion of the user data remains the responsibility of the
  439.       * application program; it will not be automatically deleted when
  440.       * the nodes themselves are reclaimed.
  441.       *
  442.       * <p> Because DOM_Node is not designed to be subclassed, userdata
  443.       * provides an alternative means for extending the the information
  444.       * kept with nodes by an application program.
  445.       *
  446.       * @param p The pointer to be kept with the node.
  447.       */
  448.     void              setUserData(void *p);
  449.     //@}
  450.     /** @name Functions introduced in DOM Level 2. */
  451.     //@{
  452.     /**
  453.      * Puts all <CODE>DOM_Text</CODE>
  454.      * nodes in the full depth of the sub-tree underneath this <CODE>DOM_Node</CODE>,
  455.      * including attribute nodes, into a "normal" form where only markup (e.g.,
  456.      * tags, comments, processing instructions, CDATA sections, and entity
  457.      * references) separates <CODE>DOM_Text</CODE>
  458.      * nodes, i.e., there are neither adjacent <CODE>DOM_Text</CODE>
  459.      * nodes nor empty <CODE>DOM_Text</CODE>
  460.      * nodes. This can be used to ensure that the DOM view of a document is the
  461.      * same as if it were saved and re-loaded, and is useful when operations
  462.      * (such as XPointer lookups) that depend on a particular document tree
  463.      * structure are to be used.
  464.      * <P><B>Note:</B> In cases where the document contains <CODE>DOM_CDATASections</CODE>,
  465.      * the normalize operation alone may not be sufficient, since XPointers do
  466.      * not differentiate between <CODE>DOM_Text</CODE>
  467.      * nodes and <CODE>DOM_CDATASection</CODE>
  468.      * nodes.</P>
  469.      *
  470.      * <p><b>"Experimental - subject to change"</b></p>
  471.      *
  472.      */
  473.     void              normalize();
  474.     /**
  475.      * Tests whether the DOM implementation implements a specific
  476.      * feature and that feature is supported by this node.
  477.      *
  478.      * <p><b>"Experimental - subject to change"</b></p>
  479.      *
  480.      * @param feature The string of the feature to test. This is the same
  481.      * name as what can be passed to the method <code>hasFeature</code> on
  482.      * <code>DOM_DOMImplementation</code>.
  483.      * @param version This is the version number of the feature to test. In
  484.      * Level 2, version 1, this is the string "2.0". If the version is not
  485.      * specified, supporting any version of the feature will cause the
  486.      * method to return <code>true</code>.
  487.      * @return Returns <code>true</code> if the specified feature is supported
  488.      * on this node, <code>false</code> otherwise.
  489.      */
  490.     bool              supports(const DOMString &feature,
  491.                        const DOMString &version) const;
  492.     /**
  493.      * Get the <em>namespace URI</em> of
  494.      * this node, or <code>null</code> if it is unspecified.
  495.      * <p>
  496.      * This is not a computed value that is the result of a namespace lookup
  497.      * based on an examination of the namespace declarations in scope. It is
  498.      * merely the namespace URI given at creation time.
  499.      * <p>
  500.      * For nodes of any type other than <CODE>ELEMENT_NODE</CODE> and
  501.      * <CODE>ATTRIBUTE_NODE</CODE> and nodes created with a DOM Level 1 method,
  502.      * such as <CODE>createElement</CODE> from the <CODE>DOM_Document</CODE>
  503.      * interface, this is always <CODE>null</CODE>.
  504.      *
  505.      * <p><b>"Experimental - subject to change"</b></p>
  506.      *
  507.      */
  508.     DOMString         getNamespaceURI() const;
  509.     /**
  510.      * Get the <em>namespace prefix</em>
  511.      * of this node, or <code>null</code> if it is unspecified.
  512.      *
  513.      * <p><b>"Experimental - subject to change"</b></p>
  514.      *
  515.      */
  516.     DOMString         getPrefix() const;
  517.     /**
  518.      * Returns the local part of the <em>qualified name</em> of this node.
  519.      * <p>
  520.      * For nodes created with a DOM Level 1 method, such as
  521.      * <code>createElement</code> from the <code>DOM_Document</code> interface,
  522.      * it is null.
  523.      *
  524.      * <p><b>"Experimental - subject to change"</b></p>
  525.      *
  526.      */
  527.     DOMString         getLocalName() const;
  528.     /**
  529.      * Set the <em>namespace prefix</em> of this node.
  530.      * <p>
  531.      * Note that setting this attribute, when permitted, changes
  532.      * the <CODE>nodeName</CODE> attribute, which holds the <EM>qualified
  533.      * name</EM>, as well as the <CODE>tagName</CODE> and <CODE>name</CODE>
  534.      * attributes of the <CODE>DOM_Element</CODE> and <CODE>DOM_Attr</CODE>
  535.      * interfaces, when applicable.
  536.      * <p>
  537.      * Note also that changing the prefix of an
  538.      * attribute, that is known to have a default value, does not make a new
  539.      * attribute with the default value and the original prefix appear, since the
  540.      * <CODE>namespaceURI</CODE> and <CODE>localName</CODE> do not change.
  541.      *
  542.      * <p><b>"Experimental - subject to change"</b></p>
  543.      *
  544.      * @param prefix The prefix of this node.
  545.      * @exception DOMException
  546.      *   INVALID_CHARACTER_ERR: Raised if the specified prefix contains
  547.      *                          an illegal character.
  548.      * <br>
  549.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  550.      * <br>
  551.      *   NAMESPACE_ERR: Raised if the specified <CODE>prefix</CODE> is
  552.      *      malformed, if the <CODE>namespaceURI</CODE> of this node is
  553.      *      <CODE>null</CODE>, if the specified prefix is "xml" and the
  554.      *      <CODE>namespaceURI</CODE> of this node is different from
  555.      *      "http://www.w3.org/XML/1998/namespace", if this node is an attribute
  556.      *      and the specified prefix is "xmlns" and the
  557.      *      <CODE>namespaceURI</CODE> of this node is different from
  558.      *      "http://www.w3.org/2000/xmlns/", or if this node is an attribute and
  559.      *      the <CODE>qualifiedName</CODE> of this node is "xmlns".
  560.      */
  561.     void              setPrefix(const DOMString &prefix);
  562.     //@}
  563. protected:
  564.     NodeImpl   *fImpl;
  565.     DOM_Node(NodeImpl *);
  566.     friend class DOM_Document;
  567.     friend class DocumentImpl;
  568.     friend class TreeWalkerImpl;
  569.     friend class NodeIteratorImpl;
  570.     friend class DOM_NamedNodeMap;
  571.     friend class DOM_NodeList;
  572.     friend class DOMParser;
  573.     friend class DOM_Entity;
  574.     friend class RangeImpl;
  575.     friend class CharacterDataImpl;
  576. friend class XUtil;
  577. };
  578. #endif