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

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.  * $Id: IDCommentImpl.cpp,v 1.3 2001/06/04 14:55:32 tng Exp $
  58.  */
  59. /**
  60.  * Represents an XML (or HTML) comment.
  61.  *
  62.  * @author Rania Y. Khalaf
  63.  * @author Joseph Kesselman
  64.  * @since  PR-DOM-Level-1-19980818.
  65.  */
  66. #include "IDCommentImpl.hpp"
  67. #include "IDCharacterDataImpl.hpp"
  68. #include "IDOM_Node.hpp"
  69. #include "IDCasts.hpp"
  70. #include "IDDocumentImpl.hpp"
  71. #include <util/XMLUniDefs.hpp>
  72. IDCommentImpl::IDCommentImpl(IDOM_Document *ownerDoc, const XMLCh *dat)
  73.     : fNode(ownerDoc),  fCharacterData(ownerDoc, dat)
  74. {
  75.     fNode.setIsLeafNode(true);
  76. };
  77. IDCommentImpl::IDCommentImpl(const IDCommentImpl &other, bool deep)
  78.     : fNode(other.fNode),
  79.     fChild(other.fChild),
  80.     fCharacterData(other.fCharacterData)
  81. {
  82.     fNode.setIsLeafNode(true);
  83. };
  84. IDCommentImpl::~IDCommentImpl() {
  85. };
  86. IDOM_Node * IDCommentImpl::cloneNode(bool deep) const
  87. {
  88.     return new (getOwnerDocument()) IDCommentImpl(*this, deep);
  89. };
  90. const XMLCh * IDCommentImpl::getNodeName() const {
  91.     static const XMLCh gComment[] =
  92.         {chPound, chLatin_c, chLatin_o, chLatin_m, chLatin_m, chLatin_e,chLatin_n, chLatin_t, 0};
  93.     return gComment;
  94. }
  95. short IDCommentImpl::getNodeType() const {
  96.     return IDOM_Node::COMMENT_NODE;
  97. };
  98.            IDOM_Node          *IDCommentImpl::appendChild(IDOM_Node *newChild)        {return fNode.appendChild (newChild); };
  99.            IDOM_NamedNodeMap  *IDCommentImpl::getAttributes() const          {return fNode.getAttributes (); };
  100.            IDOM_NodeList      *IDCommentImpl::getChildNodes() const          {return fNode.getChildNodes (); };
  101.            IDOM_Node          *IDCommentImpl::getFirstChild() const          {return fNode.getFirstChild (); };
  102.            IDOM_Node          *IDCommentImpl::getLastChild() const              {return fNode.getLastChild (); };
  103.      const XMLCh              *IDCommentImpl::getLocalName() const                    {return fNode.getLocalName (); };
  104.      const XMLCh              *IDCommentImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  105.            IDOM_Node          *IDCommentImpl::getNextSibling() const                  {return fChild.getNextSibling (); };
  106.      const XMLCh              *IDCommentImpl::getNodeValue() const                    {return fCharacterData.getNodeValue (); };
  107.            IDOM_Document      *IDCommentImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  108.      const XMLCh              *IDCommentImpl::getPrefix() const                       {return fNode.getPrefix (); };
  109.            IDOM_Node          *IDCommentImpl::getParentNode() const                   {return fChild.getParentNode (this); };
  110.            IDOM_Node          *IDCommentImpl::getPreviousSibling() const              {return fChild.getPreviousSibling (this); };
  111.            bool                IDCommentImpl::hasChildNodes() const                   {return fNode.hasChildNodes (); };
  112.            IDOM_Node          *IDCommentImpl::insertBefore(IDOM_Node *newChild, IDOM_Node *refChild)
  113.                                                                             {return fNode.insertBefore (newChild, refChild); };
  114.            void                IDCommentImpl::normalize()                             {fNode.normalize (); };
  115.            IDOM_Node          *IDCommentImpl::removeChild(IDOM_Node *oldChild)        {return fNode.removeChild (oldChild); };
  116.            IDOM_Node          *IDCommentImpl::replaceChild(IDOM_Node *newChild, IDOM_Node *oldChild)
  117.                                                                             {return fNode.replaceChild (newChild, oldChild); };
  118.            bool                IDCommentImpl::supports(const XMLCh *feature, const XMLCh *version) const
  119.                                                                             {return fNode.supports (feature, version); };
  120.            void                IDCommentImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };
  121. //
  122. //   Delegation of CharacerData functions.
  123. //
  124.      const XMLCh * IDCommentImpl::getData() const                  {return fCharacterData.getData();};
  125.      unsigned int  IDCommentImpl::getLength() const                {return fCharacterData.getLength();};
  126.      const XMLCh * IDCommentImpl::substringData(unsigned int offset, unsigned int count) const
  127.                                                                 {return fCharacterData.substringData(this, offset, count);};
  128.      void          IDCommentImpl::appendData(const XMLCh *arg)     {fCharacterData.appendData(this, arg);};
  129.      void          IDCommentImpl::insertData(unsigned int offset, const  XMLCh *arg)
  130.                                                                 {fCharacterData.insertData(this, offset, arg);};
  131.      void          IDCommentImpl::deleteData(unsigned int offset, unsigned int count)
  132.                                                                 {fCharacterData.deleteData(this, offset, count);};
  133.      void          IDCommentImpl::replaceData(unsigned int offset, unsigned int count, const XMLCh *arg)
  134.                                                                 {fCharacterData.replaceData(this, offset, count, arg);};
  135.      void          IDCommentImpl::setData(const XMLCh *data)       {fCharacterData.setData(this, data);};
  136.      void          IDCommentImpl::setNodeValue(const XMLCh  *nodeValue)   {fCharacterData.setNodeValue (this, nodeValue); };