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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMNamedNodeMap_HEADER_GUARD_
  2. #define DOMNamedNodeMap_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: DOMNamedNodeMap.hpp,v 1.8 2003/03/07 19:59:06 tng Exp $
  60.  */
  61. #include <xercesc/util/XercesDefs.hpp>
  62. XERCES_CPP_NAMESPACE_BEGIN
  63. class DOMNode;
  64. /**
  65.  *  <code>DOMNamedNodeMap</code>s  are used to
  66.  * represent collections of nodes that can be accessed by name.
  67.  *
  68.  * Note that <code>DOMNamedNodeMap</code> does not inherit from <code>DOMNodeList</code>;
  69.  * <code>DOMNamedNodeMap</code>s are not maintained in any particular order.
  70.  * Nodes contained in a <code>DOMNamedNodeMap</code> may
  71.  * also be accessed by an ordinal index, but this is simply to allow
  72.  * convenient enumeration of the contents, and
  73.  * does not imply that the DOM specifies an order to these Nodes.
  74.  *
  75.  * @since DOM Level 1
  76.  */
  77. class CDOM_EXPORT DOMNamedNodeMap {
  78. protected:
  79.     // -----------------------------------------------------------------------
  80.     //  Hidden constructors
  81.     // -----------------------------------------------------------------------
  82.     /** @name Hidden constructors */
  83.     //@{    
  84.     DOMNamedNodeMap() {};
  85.     //@}
  86. private:    
  87.     // -----------------------------------------------------------------------
  88.     // Unimplemented constructors and operators
  89.     // -----------------------------------------------------------------------
  90.     /** @name Unimplemented constructors and operators */
  91.     //@{
  92.     DOMNamedNodeMap(const DOMNamedNodeMap &);
  93.     DOMNamedNodeMap & operator = (const DOMNamedNodeMap &);
  94.     //@}
  95. public:
  96.     // -----------------------------------------------------------------------
  97.     //  All constructors are hidden, just the destructor is available
  98.     // -----------------------------------------------------------------------
  99.     /** @name Destructor */
  100.     //@{
  101.     /**
  102.      * Destructor
  103.      *
  104.      */
  105.     virtual ~DOMNamedNodeMap() {};
  106.     //@}
  107.     // -----------------------------------------------------------------------
  108.     //  Virtual DOMNamedNodeMap interface
  109.     // -----------------------------------------------------------------------
  110.     /** @name Functions introduced in DOM Level 1 */
  111.     //@{
  112.     // -----------------------------------------------------------------------
  113.     //  Setter methods
  114.     // -----------------------------------------------------------------------
  115.     /**
  116.      * Adds a node using its <code>nodeName</code> attribute.
  117.      *
  118.      * <br>As the <code>nodeName</code> attribute is used to derive the name
  119.      * which the node must be stored under, multiple nodes of certain types
  120.      * (those that have a "special" string value) cannot be stored as the names
  121.      * would clash. This is seen as preferable to allowing nodes to be aliased.
  122.      * @param arg A node to store in a named node map. The node will later be
  123.      *   accessible using the value of the <code>nodeName</code> attribute of
  124.      *   the node. If a node with that name is already present in the map, it
  125.      *   is replaced by the new one.
  126.      * @return If the new <code>DOMNode</code> replaces an existing node the
  127.      *   replaced <code>DOMNode</code> is returned,
  128.      *   otherwise <code>null</code> is returned.
  129.      * @exception DOMException
  130.      *   WRONG_DOCUMENT_ERR: Raised if <code>arg</code> was created from a
  131.      *   different document than the one that created the
  132.      *   <code>DOMNamedNodeMap</code>.
  133.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this
  134.      *   <code>DOMNamedNodeMap</code> is readonly.
  135.      *   <br>INUSE_ATTRIBUTE_ERR: Raised if <code>arg</code> is an
  136.      *   <code>DOMAttr</code> that is already an attribute of another
  137.      *   <code>DOMElement</code> object. The DOM user must explicitly clone
  138.      *   <code>DOMAttr</code> nodes to re-use them in other elements.
  139.      * @since DOM Level 1
  140.      */
  141.     virtual DOMNode   *setNamedItem(DOMNode *arg) = 0;
  142.     // -----------------------------------------------------------------------
  143.     //  Getter methods
  144.     // -----------------------------------------------------------------------
  145.     /**
  146.      * Returns the <code>index</code>th item in the map.
  147.      *
  148.      * If <code>index</code>
  149.      * is greater than or equal to the number of nodes in the map, this returns
  150.      * <code>null</code>.
  151.      * @param index Index into the map.
  152.      * @return The node at the <code>index</code>th position in the
  153.      *   <code>DOMNamedNodeMap</code>, or <code>null</code> if that is not a valid
  154.      *   index.
  155.      * @since DOM Level 1
  156.      */
  157.     virtual DOMNode     *item(XMLSize_t index) const = 0;
  158.     /**
  159.      * Retrieves a node specified by name.
  160.      *
  161.      * @param name The <code>nodeName</code> of a node to retrieve.
  162.      * @return A <code>DOMNode</code> (of any type) with the specified <code>nodeName</code>, or
  163.      *   <code>null</code> if it does not identify any node in
  164.      *   the map.
  165.      * @since DOM Level 1
  166.      */
  167.     virtual DOMNode   *getNamedItem(const XMLCh *name) const = 0;
  168.     /**
  169.      * The number of nodes in the map.
  170.      *
  171.      * The range of valid child node indices is
  172.      * 0 to <code>length-1</code> inclusive.
  173.      * @since DOM Level 1
  174.      */
  175.     virtual XMLSize_t   getLength() const = 0;
  176.     // -----------------------------------------------------------------------
  177.     //  Node methods
  178.     // -----------------------------------------------------------------------
  179.     /**
  180.      * Removes a node specified by name.
  181.      *
  182.      * If the removed node is an
  183.      * <code>DOMAttr</code> with a default value it is immediately replaced.
  184.      * @param name The <code>nodeName</code> of a node to remove.
  185.      * @return The node removed from the map if a node with such a name exists.
  186.      * @exception DOMException
  187.      *   NOT_FOUND_ERR: Raised if there is no node named <code>name</code> in
  188.      *   the map.
  189.      * <br>
  190.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this <code>DOMNamedNodeMap</code>
  191.      *   is readonly.
  192.      * @since DOM Level 1
  193.      */
  194.     virtual DOMNode    *removeNamedItem(const XMLCh *name) = 0;
  195.     //@}
  196.     /** @name Functions introduced in DOM Level 2 */
  197.     //@{
  198.     /**
  199.      * Retrieves a node specified by local name and namespace URI.
  200.      *
  201.      * @param namespaceURI The <em>namespace URI</em> of
  202.      *    the node to retrieve.
  203.      * @param localName The <em>local name</em> of the node to retrieve.
  204.      * @return A <code>DOMNode</code> (of any type) with the specified
  205.      *    local name and namespace URI, or <code>null</code> if they do not
  206.      *    identify any node in the map.
  207.      * @since DOM Level 2
  208.      */
  209.     virtual DOMNode   *getNamedItemNS(const XMLCh *namespaceURI,
  210.                                         const XMLCh *localName) const = 0;
  211.     /**
  212.      * Adds a node using its <CODE>namespaceURI</CODE> and <CODE>localName</CODE>.
  213.      *
  214.      * @param arg A node to store in a named node map. The node will later be
  215.      *       accessible using the value of the <CODE>namespaceURI</CODE> and
  216.      *       <CODE>localName</CODE> attribute of the node. If a node with those
  217.      *       namespace URI and local name is already present in the map, it is
  218.      *       replaced by the new one.
  219.      * @return If the new <code>DOMNode</code> replaces an existing node the
  220.      *   replaced <code>DOMNode</code> is returned,
  221.      *   otherwise <code>null</code> is returned.
  222.      * @exception DOMException
  223.      *   WRONG_DOCUMENT_ERR: Raised if <code>arg</code> was created from a
  224.      *   different document than the one that created the
  225.      *   <code>DOMNamedNodeMap</code>.
  226.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this
  227.      *   <code>DOMNamedNodeMap</code> is readonly.
  228.      *   <br>INUSE_ATTRIBUTE_ERR: Raised if <code>arg</code> is an
  229.      *   <code>DOMAttr</code> that is already an attribute of another
  230.      *   <code>DOMElement</code> object. The DOM user must explicitly clone
  231.      *   <code>DOMAttr</code> nodes to re-use them in other elements.
  232.      * @since DOM Level 2
  233.      */
  234.     virtual DOMNode   *setNamedItemNS(DOMNode *arg) = 0;
  235.     /**
  236.      * Removes a node specified by local name and namespace URI.
  237.      *
  238.      * @param namespaceURI The <em>namespace URI</em> of
  239.      *    the node to remove.
  240.      * @param localName The <em>local name</em> of the
  241.      *    node to remove. When this <code>DOMNamedNodeMap</code> contains the
  242.      *    attributes attached to an element, as returned by the attributes
  243.      *    attribute of the <code>DOMNode</code> interface, if the removed
  244.      *    attribute is known to have a default value, an attribute
  245.      *    immediately appears containing the default value
  246.      *    as well as the corresponding namespace URI, local name, and prefix.
  247.      * @return The node removed from the map if a node with such a local name
  248.      *    and namespace URI exists.
  249.      * @exception DOMException
  250.      *   NOT_FOUND_ERR: Raised if there is no node named <code>name</code> in
  251.      *   the map.
  252.      * <br>
  253.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this <code>DOMNamedNodeMap</code>
  254.      *   is readonly.
  255.      * @since DOM Level 2
  256.      */
  257.     virtual DOMNode     *removeNamedItemNS(const XMLCh *namespaceURI,
  258.                                           const XMLCh *localName) = 0;
  259.     //@}
  260. };
  261. XERCES_CPP_NAMESPACE_END
  262. #endif