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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 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) 2001, 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.  * $Log: IDOM_Text.hpp,v $
  58.  * Revision 1.2  2001/05/11 13:25:55  tng
  59.  * Copyright update.
  60.  *
  61.  * Revision 1.1.1.1  2001/04/03 00:14:32  andyh
  62.  * IDOM
  63.  *
  64.  */
  65. #ifndef IDOM_Text_HEADER_GUARD_
  66. #define IDOM_Text_HEADER_GUARD_
  67. #include <util/XercesDefs.hpp>
  68. #include "IDOM_CharacterData.hpp"
  69. /**
  70.  * The <code>Text</code> interface represents the textual content (termed
  71.  * character  data in XML) of an <code>Element</code> or <code>Attr</code>.
  72.  * If there is no markup inside an element's content, the text is contained
  73.  * in a single object implementing the <code>Text</code> interface that is
  74.  * the only child of the element. If there is markup, it is parsed into a
  75.  * list of elements and <code>Text</code> nodes that form the list of
  76.  * children of the element.
  77.  * <p>When a document is first made available via the DOM, there is  only one
  78.  * <code>Text</code> node for each block of text. Users may create  adjacent
  79.  * <code>Text</code> nodes that represent the  contents of a given element
  80.  * without any intervening markup, but should be aware that there is no way
  81.  * to represent the separations between these nodes in XML, so they
  82.  * will not (in general) persist between DOM editing sessions. The
  83.  * <code>normalize()</code> method on <code>Element</code> merges any such
  84.  * adjacent <code>Text</code> objects into a single node for each block of
  85.  * text; this is  recommended before employing operations that depend on a
  86.  * particular document structure, such as navigation with
  87.  * <code>XPointers.</code>
  88.  */
  89. class CDOM_EXPORT IDOM_Text: public IDOM_CharacterData {
  90.     protected:
  91.     /** @name Constructors and assignment operator */
  92.     //@{
  93.         IDOM_Text() {};
  94.         IDOM_Text(const IDOM_Text &other) {};
  95.         IDOM_Text & operator = (const IDOM_Text &other) {return *this;};
  96.     //@}
  97.     public:
  98.     /** @name Destructor. */
  99.     //@{
  100.  /**
  101.   * Destructor for IDOM_Text. The object being destroyed is the reference
  102.       * object, not the underlying Comment node itself.
  103.   *
  104.   */
  105.         virtual ~IDOM_Text() {};
  106.     //@}
  107.     /** @name Functions to modify the Text node. */
  108.     //@{
  109.     /**
  110.      * Breaks this node into two nodes at the specified
  111.      * offset, keeping both in the tree as siblings.
  112.      *
  113.      * This node then only
  114.      * contains all the content up to the <code>offset</code> point. And a new
  115.      * node of the same nodeType, which is inserted as the next sibling of this
  116.      * node, contains all the content at and after the <code>offset</code>
  117.      * point. When the <code>offset</code> is equal to the lenght of this node,
  118.      * the new node has no data.
  119.      * @param offset The offset at which to split, starting from 0.
  120.      * @return The new <code>Text</code> node.
  121.      * @exception DOMException
  122.      *   INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
  123.      *   than the number of characters in <code>data</code>.
  124.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  125.      */
  126.     virtual IDOM_Text *splitText(unsigned int offset) = 0;
  127.     //@}
  128.     /** @name Non-standard (not defined by the DOM specification) functions. */
  129.     //@{
  130.     /**
  131.      *
  132.      * <p><b>"Experimental - subject to change"</b></p>
  133.      *
  134.      * Return true if this node contains ignorable whitespaces only.
  135.      * @return True if this node contains ignorable whitespaces only.
  136.      */
  137.     virtual bool isIgnorableWhitespace() const = 0;
  138.     //@}
  139. };
  140. #endif