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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2002 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) 1999, 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: DOM_DOMImplementation.hpp,v 1.4 2003/05/22 02:26:50 knoaman Exp $
  58.  */
  59. #ifndef DOM_DOMImplementation_HEADER_GUARD_
  60. #define DOM_DOMImplementation_HEADER_GUARD_
  61. #include <xercesc/util/PlatformUtils.hpp>
  62. #include "DOMString.hpp"
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. class DOM_Document;
  65. class DOM_DocumentType;
  66. /**
  67.  *   This class provides a way to query the capabilities of an implementation
  68.  *   of the DOM
  69.  */
  70. class CDOM_EXPORT DOM_DOMImplementation {
  71.  private:
  72.     DOM_DOMImplementation(const DOM_DOMImplementation &other);
  73.  public:
  74. /** @name Constructors and assignment operators */
  75. //@{
  76.  /**
  77.    * Construct a DOM_Implementation reference variable, which should
  78.    * be assigned to the return value from
  79.    * <code>DOM_Implementation::getImplementation()</code>.
  80.    */
  81.     DOM_DOMImplementation();
  82.  /**
  83.    * Assignment operator
  84.    *
  85.    */
  86.     DOM_DOMImplementation & operator = (const DOM_DOMImplementation &other);
  87. //@}
  88.   /** @name Destructor */
  89.   //@{
  90.   /**
  91.     * Destructor.  The object being destroyed is a reference to the DOMImplemenentation,
  92.     * not the underlying DOMImplementation object itself, which is owned by
  93.     * the implementation code.
  94.     *
  95.     */
  96.     ~DOM_DOMImplementation();
  97. //@}
  98.   /** @name Getter functions */
  99.   //@{
  100.  /**
  101.    * Test if the DOM implementation implements a specific feature.
  102.    *
  103.    * @param feature The string of the feature to test (case-insensitive). The legal
  104.    *        values are defined throughout this specification. The string must be
  105.    *        an <EM>XML name</EM> (see also Compliance).
  106.    * @param version This is the version number of the package name to test.
  107.    *   In Level 1, this is the string "1.0". If the version is not specified,
  108.    *   supporting any version of the  feature will cause the method to return
  109.    *   <code>true</code>.
  110.    * @return <code>true</code> if the feature is implemented in the specified
  111.    *   version, <code>false</code> otherwise.
  112.    */
  113.  bool  hasFeature(const DOMString &feature,  const DOMString &version);
  114.   /** Return a reference to a DOM_Implementation object for this
  115.     *  DOM implementation.
  116.     *
  117.     * Intended to support applications that may be
  118.     * using DOMs retrieved from several different sources, potentially
  119.     * with different underlying implementations.
  120.     */
  121.  static DOM_DOMImplementation &getImplementation();
  122.  //@}
  123.     /** @name Functions introduced in DOM Level 2. */
  124.     //@{
  125.     /**
  126.      * Creates an empty <code>DOM_DocumentType</code> node.
  127.      * Entity declarations and notations are not made available.
  128.      * Entity reference expansions and default attribute additions
  129.      * do not occur. It is expected that a future version of the DOM
  130.      * will provide a way for populating a <code>DOM_DocumentType</code>.
  131.      *
  132.      * @param qualifiedName The <em>qualified name</em>
  133.      * of the document type to be created.
  134.      * @param publicId The external subset public identifier.
  135.      * @param systemId The external subset system identifier.
  136.      * @return A new <code>DOM_DocumentType</code> node with
  137.      * <code>Node.ownerDocument</code> set to <code>null</code>.
  138.      * @exception DOMException
  139.      *   INVALID_CHARACTER_ERR: Raised if the specified qualified name
  140.      *      contains an illegal character.
  141.      * <br>
  142.      *   NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is malformed.
  143.      */
  144.     DOM_DocumentType createDocumentType(const DOMString &qualifiedName,
  145. const DOMString &publicId, const DOMString &systemId);
  146.     /**
  147.      * Creates an XML <code>DOM_Document</code> object of the specified type
  148.      * with its document element.
  149.      *
  150.      * @param namespaceURI The <em>namespace URI</em> of
  151.      * the document element to create, or <code>null</code>.
  152.      * @param qualifiedName The <em>qualified name</em>
  153.      * of the document element to be created.
  154.      * @param doctype The type of document to be created or <code>null</code>.
  155.      * <p>When <code>doctype</code> is not <code>null</code>, its
  156.      * <code>Node.ownerDocument</code> attribute is set to the document
  157.      * being created.
  158.      * @return A new <code>DOM_Document</code> object.
  159.      * @exception DOMException
  160.      *   INVALID_CHARACTER_ERR: Raised if the specified qualified name
  161.      *      contains an illegal character.
  162.      * <br>
  163.      *   NAMESPACE_ERR: Raised if the <CODE>qualifiedName</CODE> is
  164.      *      malformed, or if the <CODE>qualifiedName</CODE> has a prefix that is
  165.      *      "xml" and the <CODE>namespaceURI</CODE> is different from
  166.      *      "http://www.w3.org/XML/1998/namespace".
  167.      * <br>
  168.      *   WRONG_DOCUMENT_ERR: Raised if <code>doctype</code> has already
  169.      *   been used with a different document.
  170.      */
  171.     DOM_Document createDocument(const DOMString &namespaceURI,
  172. const DOMString &qualifiedName, const DOM_DocumentType &doctype,
  173. MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  174.     //@}
  175.     // -----------------------------------------------------------------------
  176.     //  Notification that lazy data has been deleted
  177.     // -----------------------------------------------------------------------
  178. static void reinitDOM_DOMImplementation();
  179. };
  180. XERCES_CPP_NAMESPACE_END
  181. #endif