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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMWriterFilter_HEADER_GUARD_
  2. #define DOMWriterFilter_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  *
  6.  * Copyright (c) 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: DOMWriterFilter.hpp,v 1.9 2003/03/07 19:59:09 tng Exp $
  60.  * $Log: DOMWriterFilter.hpp,v $
  61.  * Revision 1.9  2003/03/07 19:59:09  tng
  62.  * [Bug 11692] Unimplement the hidden constructors and assignment operator to remove warnings from gcc.
  63.  *
  64.  * Revision 1.8  2002/11/04 15:09:25  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.7  2002/08/22 15:04:57  tng
  68.  * Remove unused parameter variables in inline functions.
  69.  *
  70.  * Revision 1.6  2002/06/06 20:53:07  tng
  71.  * Documentation Fix: Update the API Documentation for DOM headers
  72.  *
  73.  * Revision 1.5  2002/06/04 14:24:04  peiyongz
  74.  * Make DOMWriterFilter pure abstract class w/o implementing any method
  75.  * and data
  76.  *
  77.  * Revision 1.4  2002/06/03 22:34:53  peiyongz
  78.  * DOMWriterFilter: setter provided, and allows any SHOW setting
  79.  *
  80.  * Revision 1.3  2002/05/31 20:59:40  peiyongz
  81.  * Add "introduced in DOM3"
  82.  *
  83.  * Revision 1.2  2002/05/30 16:25:33  tng
  84.  * Fix doxygen warning message.
  85.  *
  86.  * Revision 1.1  2002/05/28 22:38:55  peiyongz
  87.  * DOM3 Save Interface: DOMWriter/DOMWriterFilter
  88.  *
  89.  */
  90. /**
  91.  *
  92.  * DOMWriterFilter.hpp: interface for the DOMWriterFilter class.
  93.  *
  94.  * DOMWriterFilter provide applications the ability to examine nodes
  95.  * as they are being serialized.
  96.  *
  97.  * DOMWriterFilter lets the application decide what nodes should be
  98.  * serialized or not.
  99.  *
  100.  * The DOMDocument, DOMDocumentType, DOMNotation, and DOMEntity nodes are not passed
  101.  * to the filter.
  102.  *
  103.  * @since DOM Level 3
  104.  */
  105. #include <xercesc/dom/DOMNodeFilter.hpp>
  106. XERCES_CPP_NAMESPACE_BEGIN
  107. class CDOM_EXPORT DOMWriterFilter : public DOMNodeFilter {
  108. protected:
  109.     // -----------------------------------------------------------------------
  110.     //  Hidden constructors
  111.     // -----------------------------------------------------------------------
  112.     /** @name Hidden constructors */
  113.     //@{    
  114.     DOMWriterFilter() {};
  115.     //@}
  116. private:
  117.     // -----------------------------------------------------------------------
  118.     // Unimplemented constructors and operators
  119.     // -----------------------------------------------------------------------
  120.     /** @name Unimplemented constructors and operators */
  121.     //@{
  122.     DOMWriterFilter(const DOMWriterFilter &);
  123.     DOMWriterFilter & operator = (const DOMWriterFilter &);
  124.     //@}
  125. public:
  126.     // -----------------------------------------------------------------------
  127.     //  All constructors are hidden, just the destructor is available
  128.     // -----------------------------------------------------------------------
  129.     /** @name Destructor */
  130.     //@{
  131.     /**
  132.      * Destructor
  133.      *
  134.      */
  135.     virtual ~DOMWriterFilter() {};
  136.     //@}
  137.     // -----------------------------------------------------------------------
  138.     //  Virtual DOMWriterFilter interface
  139.     // -----------------------------------------------------------------------
  140.     /** @name Functions introduced in DOM Level 3 */
  141.     //@{
  142.  /**
  143.      * Interface from <code>DOMNodeFilter</code>,
  144.      * to be implemented by implementation (derived class)
  145.      */
  146.     virtual short acceptNode(const DOMNode* node) const = 0;
  147.     /**
  148.      * Tells the DOMWriter what types of nodes to show to the filter.
  149.      * See <code>DOMNodeFilter</code> for definition of the constants.
  150.      * The constant SHOW_ATTRIBUTE is meaningless here, attribute nodes will
  151.      * never be passed to a DOMWriterFilter.
  152.      *
  153.      *  <p><b>"Experimental - subject to change"</b></p>
  154.      *
  155.      * @return The constants of what types of nodes to show.
  156.      * @see   setWhatToShow
  157.      * @since DOM Level 3
  158.      */
  159.     virtual unsigned long getWhatToShow() const =0;
  160.     /**
  161.      * Set what types of nodes are to be presented.
  162.      * See <code>DOMNodeFilter</code> for definition of the constants.
  163.      *
  164.      *  <p><b>"Experimental - subject to change"</b></p>
  165.      *
  166.      * @param toShow The constants of what types of nodes to show.
  167.      * @see   getWhatToShow
  168.      * @since DOM Level 3
  169.      */
  170.     virtual void          setWhatToShow(unsigned long toShow) =0;
  171.     //@}
  172. private:
  173.     // -----------------------------------------------------------------------
  174.     //  Private data members
  175.     //
  176.     //  fWhatToShow
  177.     //
  178.     //      The whatToShow mask.
  179.     //      Tells the DOMWriter what types of nodes to show to the filter.
  180.     //      See NodeFilter for definition of the constants.
  181.     //      The constants
  182.     //      SHOW_ATTRIBUTE,
  183.     //      SHOW_DOCUMENT,
  184.     //      SHOW_DOCUMENT_TYPE,
  185.     //      SHOW_NOTATION, and
  186.     //      SHOW_DOCUMENT_FRAGMENT are meaningless here,
  187.     //      Entity nodes are not passed to the filter.
  188.     //
  189.     //      Those nodes will never be passed to a DOMWriterFilter.
  190.     //
  191.     //   Derived class shall add this data member:
  192.     //
  193.     //   unsigned long fWhatToShow;
  194.     // -----------------------------------------------------------------------
  195. };
  196. XERCES_CPP_NAMESPACE_END
  197. #endif