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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMElement_HEADER_GUARD_
  2. #define DOMElement_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: DOMElement.hpp,v 1.9 2003/03/07 19:59:03 tng Exp $
  60.  */
  61. #include <xercesc/util/XercesDefs.hpp>
  62. #include "DOMNode.hpp"
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. class DOMAttr;
  65. class DOMNodeList;
  66. class DOMTypeInfo;
  67. /**
  68.  * By far the vast majority of objects (apart from text) that authors
  69.  * encounter when traversing a document are <code>DOMElement</code> nodes.
  70.  *
  71.  * Assume the following XML document:&lt;elementExample id="demo"&gt;
  72.  * &lt;subelement1/&gt;
  73.  * &lt;subelement2&gt;&lt;subsubelement/&gt;&lt;/subelement2&gt;
  74.  * &lt;/elementExample&gt;
  75.  * <p>When represented using DOM, the top node is an <code>DOMElement</code> node
  76.  * for "elementExample", which contains two child <code>DOMElement</code> nodes,
  77.  * one for "subelement1" and one for "subelement2". "subelement1" contains no
  78.  * child nodes.
  79.  * <p>Elements may have attributes associated with them; since the
  80.  * <code>DOMElement</code> interface inherits from <code>DOMNode</code>, the generic
  81.  *  <code>DOMNode</code> interface method <code>getAttributes</code> may be used
  82.  * to retrieve the set of all attributes for an element.  There are methods on
  83.  *  the <code>DOMElement</code> interface to retrieve either an <code>DOMAttr</code>
  84.  *  object by name or an attribute value by name. In XML, where an attribute
  85.  * value may contain entity references, an <code>DOMAttr</code> object should be
  86.  * retrieved to examine the possibly fairly complex sub-tree representing the
  87.  * attribute value. On the other hand, in HTML, where all attributes have
  88.  * simple string values, methods to directly access an attribute value can
  89.  * safely be used as a convenience.
  90.  *
  91.  * @since DOM Level 1
  92.  */
  93. class CDOM_EXPORT DOMElement: public DOMNode {
  94. protected:
  95.     // -----------------------------------------------------------------------
  96.     //  Hidden constructors
  97.     // -----------------------------------------------------------------------
  98.     /** @name Hidden constructors */
  99.     //@{    
  100.     DOMElement() {};
  101.     //@}
  102.     
  103. private:
  104.     // -----------------------------------------------------------------------
  105.     // Unimplemented constructors and operators
  106.     // -----------------------------------------------------------------------
  107.     /** @name Unimplemented constructors and operators */
  108.     //@{
  109.     DOMElement(const DOMElement &);
  110.     DOMElement & operator = (const DOMElement &);
  111.     //@}
  112. public:
  113.     // -----------------------------------------------------------------------
  114.     //  All constructors are hidden, just the destructor is available
  115.     // -----------------------------------------------------------------------
  116.     /** @name Destructor */
  117.     //@{
  118.     /**
  119.      * Destructor
  120.      *
  121.      */
  122.     virtual ~DOMElement() {};
  123.     //@}
  124.     // -----------------------------------------------------------------------
  125.     //  Virtual DOMElement interface
  126.     // -----------------------------------------------------------------------
  127.     /** @name Functions introduced in DOM Level 1 */
  128.     //@{
  129.     // -----------------------------------------------------------------------
  130.     //  Getter methods
  131.     // -----------------------------------------------------------------------
  132.     /**
  133.      * The name of the element.
  134.      *
  135.      * For example, in: &lt;elementExample
  136.      * id="demo"&gt;  ... &lt;/elementExample&gt; , <code>tagName</code> has
  137.      * the value <code>"elementExample"</code>. Note that this is
  138.      * case-preserving in XML, as are all of the operations of the DOM.
  139.      * @since DOM Level 1
  140.      */
  141.     virtual const XMLCh *         getTagName() const = 0;
  142.     /**
  143.      * Retrieves an attribute value by name.
  144.      *
  145.      * @param name The name of the attribute to retrieve.
  146.      * @return The <code>DOMAttr</code> value as a string, or the empty  string if
  147.      *   that attribute does not have a specified or default value.
  148.      * @since DOM Level 1
  149.      */
  150.     virtual const XMLCh *         getAttribute(const XMLCh *name) const = 0;
  151.     /**
  152.      * Retrieves an <code>DOMAttr</code> node by name.
  153.      *
  154.      * @param name The name (<CODE>nodeName</CODE>) of the attribute to retrieve.
  155.      * @return The <code>DOMAttr</code> node with the specified name (<CODE>nodeName</CODE>) or
  156.      *   <code>null</code> if there is no such attribute.
  157.      * @since DOM Level 1
  158.      */
  159.     virtual DOMAttr       * getAttributeNode(const XMLCh *name) const = 0;
  160.     /**
  161.      * Returns a <code>DOMNodeList</code> of all descendant elements with a given
  162.      * tag name, in the order in which they would be encountered in a preorder
  163.      * traversal of the <code>DOMElement</code> tree.
  164.      *
  165.      * @param name The name of the tag to match on. The special value "*"
  166.      *   matches all tags.
  167.      * @return A list of matching <code>DOMElement</code> nodes.
  168.      * @since DOM Level 1
  169.      */
  170.     virtual DOMNodeList   * getElementsByTagName(const XMLCh *name) const = 0;
  171.     // -----------------------------------------------------------------------
  172.     //  Setter methods
  173.     // -----------------------------------------------------------------------
  174.     /**
  175.      * Adds a new attribute.
  176.      *
  177.      * If an attribute with that name is already present
  178.      * in the element, its value is changed to be that of the value parameter.
  179.      * This value is a simple string, it is not parsed as it is being set. So
  180.      * any markup (such as syntax to be recognized as an entity reference) is
  181.      * treated as literal text, and needs to be appropriately escaped by the
  182.      * implementation when it is written out. In order to assign an attribute
  183.      * value that contains entity references, the user must create an
  184.      * <code>DOMAttr</code> node plus any <code>DOMText</code> and
  185.      * <code>DOMEntityReference</code> nodes, build the appropriate subtree, and
  186.      * use <code>setAttributeNode</code> to assign it as the value of an
  187.      * attribute.
  188.      * @param name The name of the attribute to create or alter.
  189.      * @param value Value to set in string form.
  190.      * @exception DOMException
  191.      *   INVALID_CHARACTER_ERR: Raised if the specified name contains an
  192.      *   illegal character.
  193.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  194.      * @since DOM Level 1
  195.      */
  196.     virtual void             setAttribute(const XMLCh *name,
  197.                                   const XMLCh *value) = 0;
  198.     /**
  199.      * Adds a new attribute.
  200.      *
  201.      * If an attribute with that name (<CODE>nodeName</CODE>) is already present
  202.      * in the element, it is replaced by the new one.
  203.      * @param newAttr The <code>DOMAttr</code> node to add to the attribute list.
  204.      * @return If the <code>newAttr</code> attribute replaces an existing
  205.      *   attribute, the replaced
  206.      *   <code>DOMAttr</code> node is returned, otherwise <code>null</code> is
  207.      *   returned.
  208.      * @exception DOMException
  209.      *   WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
  210.      *   different document than the one that created the element.
  211.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  212.      *   <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
  213.      *   attribute of another <code>DOMElement</code> object. The DOM user must
  214.      *   explicitly clone <code>DOMAttr</code> nodes to re-use them in other
  215.      *   elements.
  216.      * @since DOM Level 1
  217.      */
  218.     virtual DOMAttr       * setAttributeNode(DOMAttr *newAttr) = 0;
  219.     /**
  220.      * Removes the specified attribute node.
  221.      * If the removed <CODE>DOMAttr</CODE>
  222.      *   has a default value it is immediately replaced. The replacing attribute
  223.      *   has the same namespace URI and local name, as well as the original prefix,
  224.      *   when applicable.
  225.      *
  226.      * @param oldAttr The <code>DOMAttr</code> node to remove from the attribute
  227.      *   list.
  228.      * @return The <code>DOMAttr</code> node that was removed.
  229.      * @exception DOMException
  230.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  231.      *   <br>NOT_FOUND_ERR: Raised if <code>oldAttr</code> is not an attribute
  232.      *   of the element.
  233.      * @since DOM Level 1
  234.      */
  235.     virtual DOMAttr       * removeAttributeNode(DOMAttr *oldAttr) = 0;
  236.     /**
  237.      * Removes an attribute by name.
  238.      *
  239.      * If the removed attribute
  240.      *   is known to have a default value, an attribute immediately appears
  241.      *   containing the default value as well as the corresponding namespace URI,
  242.      *   local name, and prefix when applicable.<BR>To remove an attribute by local
  243.      *   name and namespace URI, use the <CODE>removeAttributeNS</CODE> method.
  244.      * @param name The name of the attribute to remove.
  245.      * @exception DOMException
  246.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  247.      * @since DOM Level 1
  248.      */
  249.     virtual void              removeAttribute(const XMLCh *name) = 0;
  250.     //@}
  251.     /** @name Functions introduced in DOM Level 2. */
  252.     //@{
  253.     /**
  254.      * Retrieves an attribute value by local name and namespace URI.
  255.      *
  256.      * @param namespaceURI The <em>namespace URI</em> of
  257.      *    the attribute to retrieve.
  258.      * @param localName The <em>local name</em> of the
  259.      *    attribute to retrieve.
  260.      * @return The <code>DOMAttr</code> value as a string, or an <CODE>null</CODE> if
  261.      *    that attribute does not have a specified or default value.
  262.      * @since DOM Level 2
  263.      */
  264.     virtual const XMLCh *         getAttributeNS(const XMLCh *namespaceURI,
  265.                                                  const XMLCh *localName) const = 0;
  266.     /**
  267.      * Adds a new attribute. If an attribute with the same
  268.      * local name and namespace URI is already present on the element, its prefix
  269.      * is changed to be the prefix part of the <CODE>qualifiedName</CODE>, and
  270.      * its value is changed to be the <CODE>value</CODE> parameter. This value is
  271.      * a simple string, it is not parsed as it is being set. So any markup (such
  272.      * as syntax to be recognized as an entity reference) is treated as literal
  273.      * text, and needs to be appropriately escaped by the implementation when it
  274.      * is written out. In order to assign an attribute value that contains entity
  275.      * references, the user must create an <CODE>DOMAttr</CODE>
  276.      * node plus any <CODE>DOMText</CODE> and <CODE>DOMEntityReference</CODE>
  277.      * nodes, build the appropriate subtree, and use
  278.      * <CODE>setAttributeNodeNS</CODE> or <CODE>setAttributeNode</CODE> to assign
  279.      * it as the value of an attribute.
  280.      *
  281.      * @param namespaceURI The <em>namespace URI</em> of
  282.      *    the attribute to create or alter.
  283.      * @param qualifiedName The <em>qualified name</em> of the
  284.      *    attribute to create or alter.
  285.      * @param value The value to set in string form.
  286.      * @exception DOMException
  287.      *   INVALID_CHARACTER_ERR: Raised if the specified qualified name contains an
  288.      *   illegal character.
  289.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  290.      * <br>
  291.      *   NAMESPACE_ERR: Raised if the <CODE>qualifiedName</CODE> is
  292.      *        malformed, if the <CODE>qualifiedName</CODE> has a prefix and the
  293.      *        <CODE>namespaceURI</CODE> is <CODE>null</CODE> or an empty string,
  294.      *        if the <CODE>qualifiedName</CODE> has a prefix that is "xml" and the
  295.      *        <CODE>namespaceURI</CODE> is different from
  296.      *        "http://www.w3.org/XML/1998/namespace", if the
  297.      *        <CODE>qualifiedName</CODE> has a prefix that is "xmlns" and the
  298.      *        <CODE>namespaceURI</CODE> is different from
  299.      *        "http://www.w3.org/2000/xmlns/", or if the
  300.      *        <CODE>qualifiedName</CODE> is "xmlns" and the
  301.      *        <CODE>namespaceURI</CODE> is different from
  302.      *        "http://www.w3.org/2000/xmlns/".
  303.      * @since DOM Level 2
  304.      */
  305.     virtual void             setAttributeNS(const XMLCh *namespaceURI,
  306.                                             const XMLCh *qualifiedName, const XMLCh *value) = 0;
  307.     /**
  308.      * Removes an attribute by local name and namespace URI. If the
  309.      * removed attribute has a default value it is immediately replaced.
  310.      * The replacing attribute has the same namespace URI and local name, as well as
  311.      * the original prefix.
  312.      *
  313.      * @param namespaceURI The <em>namespace URI</em> of
  314.      *    the attribute to remove.
  315.      * @param localName The <em>local name</em> of the
  316.      *    attribute to remove.
  317.      * @exception DOMException
  318.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  319.      * @since DOM Level 2
  320.      */
  321.     virtual void              removeAttributeNS(const XMLCh *namespaceURI,
  322.                                                 const XMLCh *localName) = 0;
  323.     /**
  324.      * Retrieves an <code>DOMAttr</code> node by local name and namespace URI.
  325.      *
  326.      * @param namespaceURI The <em>namespace URI</em> of
  327.      *    the attribute to retrieve.
  328.      * @param localName The <em>local name</em> of the
  329.      *    attribute to retrieve.
  330.      * @return The <code>DOMAttr</code> node with the specified attribute local
  331.      *    name and namespace URI or <code>null</code> if there is no such attribute.
  332.      * @since DOM Level 2
  333.      */
  334.     virtual DOMAttr      *  getAttributeNodeNS(const XMLCh *namespaceURI,
  335.                                                const XMLCh *localName) const = 0;
  336.     /**
  337.      * Adds a new attribute.
  338.      *
  339.      * If an attribute with that local name and namespace URI is already present
  340.      * in the element, it is replaced by the new one.
  341.      *
  342.      * @param newAttr The <code>DOMAttr</code> node to add to the attribute list.
  343.      * @return If the <code>newAttr</code> attribute replaces an existing
  344.      *    attribute with the same <em>local name</em> and <em>namespace URI</em>,
  345.      *    the replaced <code>DOMAttr</code> node is
  346.      *    returned, otherwise <code>null</code> is returned.
  347.      * @exception DOMException
  348.      *   WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
  349.      *   different document than the one that created the element.
  350.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  351.      *   <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
  352.      *   attribute of another <code>DOMElement</code> object. The DOM user must
  353.      *   explicitly clone <code>DOMAttr</code> nodes to re-use them in other
  354.      *   elements.
  355.      * @since DOM Level 2
  356.      */
  357.     virtual DOMAttr      *  setAttributeNodeNS(DOMAttr *newAttr) = 0;
  358.     /**
  359.      * Returns a <code>DOMNodeList</code> of all the <code>DOMElement</code>s
  360.      * with a given local name and namespace URI in the order in which they
  361.      * would be encountered in a preorder traversal of the
  362.      * <code>DOMDocument</code> tree, starting from this node.
  363.      *
  364.      * @param namespaceURI The <em>namespace URI</em> of
  365.      *    the elements to match on. The special value "*" matches all
  366.      *    namespaces.
  367.      * @param localName The <em>local name</em> of the
  368.      *    elements to match on. The special value "*" matches all local names.
  369.      * @return A new <code>DOMNodeList</code> object containing all the matched
  370.      *    <code>DOMElement</code>s.
  371.      * @since DOM Level 2
  372.      */
  373.     virtual DOMNodeList   * getElementsByTagNameNS(const XMLCh *namespaceURI,
  374.                                                    const XMLCh *localName) const = 0;
  375.     /**
  376.      * Returns <code>true</code> when an attribute with a given name is
  377.      * specified on this element or has a default value, <code>false</code>
  378.      * otherwise.
  379.      * @param name The name of the attribute to look for.
  380.      * @return <code>true</code> if an attribute with the given name is
  381.      *   specified on this element or has a default value, <code>false</code>
  382.      *    otherwise.
  383.      * @since DOM Level 2
  384.      */
  385.     virtual bool         hasAttribute(const XMLCh *name) const = 0;
  386.     /**
  387.      * Returns <code>true</code> when an attribute with a given local name and
  388.      * namespace URI is specified on this element or has a default value,
  389.      * <code>false</code> otherwise. HTML-only DOM implementations do not
  390.      * need to implement this method.
  391.      * @param namespaceURI The namespace URI of the attribute to look for.
  392.      * @param localName The local name of the attribute to look for.
  393.      * @return <code>true</code> if an attribute with the given local name
  394.      *   and namespace URI is specified or has a default value on this
  395.      *   element, <code>false</code> otherwise.
  396.      * @since DOM Level 2
  397.      */
  398.     virtual bool         hasAttributeNS(const XMLCh *namespaceURI,
  399.                                         const XMLCh *localName) const = 0;
  400.     //@}
  401.     /** @name Functions introduced in DOM Level 3 */
  402.     //@{
  403.     /**
  404.      * Declares the <code>DOMAttr</code> specified by name to be of type ID. If the
  405.      * value of the specified <code>DOMAttr</code> is unique then this element node
  406.      * can later be retrieved using getElementById on Document. Note, however,
  407.      * that this simply affects this node and does not change any grammar that
  408.      * may be in use.
  409.      * To specify an <code>DOMAttr</code> by local name and namespace URI, use the
  410.      * setIdAttributeNS method.
  411.      * @param name The name of the <code>DOMAttr</code>.
  412.      * @exception DOMException
  413.      *    NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  414.      *    <br />NOT_FOUND_ERR: Raised if the specified node is not an <code>DOMAttr</code>
  415.      * of this element.
  416.      *
  417.      * <p><b>"Experimental - subject to change"</b></p>
  418.      *
  419.      * @since DOM Level 3
  420.      */
  421.     virtual void setIdAttribute(const XMLCh* name) = 0;
  422.     /**
  423.      * Declares the <code>DOMAttr</code> specified by local name and namespace
  424.      * URI to be of type ID. If the value of the specified <code>DOMAttr</code>
  425.      * is unique then this <code>DOMElement</code> node can later be retrieved
  426.      * using getElementById on <code>DOMDocument</code>. Note, however, that
  427.      * this simply affects this node and does not change any grammar that may
  428.      * be in use.
  429.      * @param namespaceURI The namespace URI of the <code>DOMAttr</code>.
  430.      * @param localName The local name of the <code>DOMAttr</code>.
  431.      * @exception  DOMException
  432.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  433.      *   <br />NOT_FOUND_ERR: Raised if the specified node is not an <code>DOMAttr</code> of this element.
  434.      *
  435.      * <p><b>"Experimental - subject to change"</b></p>
  436.      *
  437.      * @since DOM Level 3
  438.      */
  439.     virtual void setIdAttributeNS(const XMLCh* namespaceURI, const XMLCh* localName) = 0;
  440.     /**
  441.      * Declares the <code>DOMAttr</code> specified by node to be of type ID.
  442.      * If the value of the specified <code>DOMAttr</code> is unique then this
  443.      * <code>DOMElement</code> node can later be retrieved using getElementById
  444.      * on <code>DOMDocument</code>. Note, however, that this simply affects this
  445.      * node and does not change any grammar that may be in use.
  446.      * @param idAttr The <code>DOMAttr</code> node.
  447.      * @exception  DOMException
  448.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  449.      *   <br />NOT_FOUND_ERR: Raised if the specified node is not an <code>DOMAttr</code> of this element.
  450.      *
  451.      * <p><b>"Experimental - subject to change"</b></p>
  452.      *
  453.      * @since DOM Level 3
  454.      */
  455.     virtual void setIdAttributeNode(const DOMAttr *idAttr) = 0;
  456.     /**
  457.      * Returns the type information associated with this element.
  458.      *
  459.      * <p><b>"Experimental - subject to change"</b></p>
  460.      *
  461.      * @return the <code>DOMTypeInfo</code> associated with this element
  462.      * @since DOM level 3
  463.      */
  464.     virtual const DOMTypeInfo* getTypeInfo() const = 0;
  465.     //@}
  466. };
  467. XERCES_CPP_NAMESPACE_END
  468. #endif