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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMText_HEADER_GUARD_
  2. #define DOMText_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: DOMText.hpp,v 1.8 2003/03/07 19:59:09 tng Exp $
  60.  */
  61. #include <xercesc/util/XercesDefs.hpp>
  62. #include "DOMCharacterData.hpp"
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. /**
  65.  * The <code>DOMText</code> interface inherits from <code>DOMCharacterData</code>
  66.  * and represents the textual content (termed character data in XML) of an
  67.  * <code>DOMElement</code> or <code>DOMAttr</code>. If there is no markup inside
  68.  * an element's content, the text is contained in a single object
  69.  * implementing the <code>DOMText</code> interface that is the only child of
  70.  * the element. If there is markup, it is parsed into the information items
  71.  * (elements, comments, etc.) and <code>DOMText</code> nodes that form the list
  72.  * of children of the element.
  73.  * <p>When a document is first made available via the DOM, there is only one
  74.  * <code>DOMText</code> node for each block of text. Users may create adjacent
  75.  * <code>DOMText</code> nodes that represent the contents of a given element
  76.  * without any intervening markup, but should be aware that there is no way
  77.  * to represent the separations between these nodes in XML or HTML, so they
  78.  * will not (in general) persist between DOM editing sessions. The
  79.  * <code>normalize()</code> method on <code>DOMNode</code> merges any such
  80.  * adjacent <code>DOMText</code> objects into a single node for each block of
  81.  * text.
  82.  * <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>.
  83.  */
  84. class CDOM_EXPORT DOMText: public DOMCharacterData {
  85. protected:
  86.     // -----------------------------------------------------------------------
  87.     //  Hidden constructors
  88.     // -----------------------------------------------------------------------
  89.     /** @name Hidden constructors */
  90.     //@{    
  91.     DOMText() {};
  92.     //@}
  93. private:
  94.     // -----------------------------------------------------------------------
  95.     // Unimplemented constructors and operators
  96.     // -----------------------------------------------------------------------
  97.     /** @name Unimplemented constructors and operators */
  98.     //@{
  99.     DOMText(const DOMText &);
  100.     DOMText & operator = (const DOMText &);
  101.     //@}
  102. public:
  103.     // -----------------------------------------------------------------------
  104.     //  All constructors are hidden, just the destructor is available
  105.     // -----------------------------------------------------------------------
  106.     /** @name Destructor */
  107.     //@{
  108.     /**
  109.      * Destructor
  110.      *
  111.      */
  112.     virtual ~DOMText() {};
  113.     //@}
  114.     // -----------------------------------------------------------------------
  115.     //  Virtual DOMText interface
  116.     // -----------------------------------------------------------------------
  117.     /** @name Functions introduced in DOM Level 1 */
  118.     //@{
  119.     /**
  120.      * Breaks this node into two nodes at the specified <code>offset</code>,
  121.      * keeping both in the tree as siblings. After being split, this node
  122.      * will contain all the content up to the <code>offset</code> point. A
  123.      * new node of the same type, which contains all the content at and
  124.      * after the <code>offset</code> point, is returned. If the original
  125.      * node had a parent node, the new node is inserted as the next sibling
  126.      * of the original node. When the <code>offset</code> is equal to the
  127.      * length of this node, the new node has no data.
  128.      * @param offset The 16-bit unit offset at which to split, starting from
  129.      *   <code>0</code>.
  130.      * @return The new node, of the same type as this node.
  131.      * @exception DOMException
  132.      *   INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
  133.      *   than the number of 16-bit units in <code>data</code>.
  134.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  135.      * @since DOM Level 1
  136.      */
  137.     virtual DOMText *splitText(XMLSize_t offset) = 0;
  138.     //@}
  139.     /** @name Functions introduced in DOM Level 3 */
  140.     //@{
  141.     /**
  142.      * Returns whether this text node contains whitespace in element content,
  143.      * often abusively called "ignorable whitespace".  An implementation can
  144.      * only return <code>true</code> if, one way or another, it has access
  145.      * to the relevant information (e.g., the DTD or schema).
  146.      *
  147.      * <p><b>"Experimental - subject to change"</b></p>
  148.      *
  149.      * <br> This attribute represents the property [element content
  150.      * whitespace] defined in .
  151.      * @since DOM Level 3
  152.      */
  153.     virtual bool     getIsWhitespaceInElementContent() const = 0;
  154.     /**
  155.      * Returns all text of <code>DOMText</code> nodes logically-adjacent text
  156.      * nodes to this node, concatenated in document order.
  157.      *
  158.      * <p><b>"Experimental - subject to change"</b></p>
  159.      *
  160.      * @since DOM Level 3
  161.      */
  162.     virtual const XMLCh* getWholeText() = 0;
  163.     /**
  164.      * Substitutes the a specified text for the text of the current node and
  165.      * all logically-adjacent text nodes.
  166.      *
  167.      * <p><b>"Experimental - subject to change"</b></p>
  168.      *
  169.      * <br>This method returns the node in the hierarchy which received the
  170.      * replacement text, which is null if the text was empty or is the
  171.      * current node if the current node is not read-only or otherwise is a
  172.      * new node of the same type as the current node inserted at the site of
  173.      * the replacement. All logically-adjacent text nodes are removed
  174.      * including the current node unless it was the recipient of the
  175.      * replacement text.
  176.      * <br>Where the nodes to be removed are read-only descendants of an
  177.      * <code>DOMEntityReference</code>, the <code>DOMEntityReference</code> must
  178.      * be removed instead of the read-only nodes. If any
  179.      * <code>DOMEntityReference</code> to be removed has descendants that are
  180.      * not <code>DOMEntityReference</code>, <code>DOMText</code>, or
  181.      * <code>DOMCDATASection</code> nodes, the <code>replaceWholeText</code>
  182.      * method must fail before performing any modification of the document,
  183.      * raising a <code>DOMException</code> with the code
  184.      * <code>NO_MODIFICATION_ALLOWED_ERR</code>.
  185.      * @param content The content of the replacing <code>DOMText</code> node.
  186.      * @return The <code>DOMText</code> node created with the specified content.
  187.      * @exception DOMException
  188.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if one of the <code>DOMText</code>
  189.      *   nodes being replaced is readonly.
  190.      * @since DOM Level 3
  191.      */
  192.     virtual DOMText* replaceWholeText(const XMLCh* content) = 0;
  193.     //@}
  194.     // -----------------------------------------------------------------------
  195.     // Non-standard extension
  196.     // -----------------------------------------------------------------------
  197.     /** @name Non-standard extension */
  198.     //@{
  199.     /**
  200.      * Non-standard extension
  201.      *
  202.      * Return true if this node contains ignorable whitespaces only.
  203.      * @return True if this node contains ignorable whitespaces only.
  204.      */
  205.     virtual bool isIgnorableWhitespace() const = 0;
  206.     //@}
  207. };
  208. XERCES_CPP_NAMESPACE_END
  209. #endif