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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-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) 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: XMLUni.hpp,v 1.33 2001/11/22 21:39:00 peiyongz Exp $
  58.  */
  59. // ---------------------------------------------------------------------------
  60. //  This file contains the grunt work constants for Unicode characters and
  61. //  common Unicode constant strings. These cannot be created normally because
  62. //  we have to compile on systems that cannot do the L"" style prefix. So
  63. //  they must be created as constant values for Unicode code points and the
  64. //  strings built up as arrays of those constants.
  65. // ---------------------------------------------------------------------------
  66. #if !defined(XMLUNI_HPP)
  67. #define XMLUNI_HPP
  68. #include <util/XercesDefs.hpp>
  69. class XMLUTIL_EXPORT XMLUni
  70. {
  71. public :
  72.     // -----------------------------------------------------------------------
  73.     //  These are constant strings that are common in XML data. Because
  74.     //  of the limitation of the compilers we have to work with, these are
  75.     //  done as arrays of XMLCh characters, not as constant strings.
  76.     // -----------------------------------------------------------------------
  77.     static const XMLCh fgAnyString[];
  78.     static const XMLCh fgAttListString[];
  79.     static const XMLCh fgCommentString[];
  80.     static const XMLCh fgCDATAString[];
  81.     static const XMLCh fgDefaultString[];
  82.     static const XMLCh fgDocTypeString[];
  83.     static const XMLCh fgEBCDICEncodingString[];
  84.     static const XMLCh fgElemString[];
  85.     static const XMLCh fgEmptyString[];
  86.     static const XMLCh fgEncodingString[];
  87.     static const XMLCh fgEntitString[];
  88.     static const XMLCh fgEntityString[];
  89.     static const XMLCh fgEntitiesString[];
  90.     static const XMLCh fgEnumerationString[];
  91.     static const XMLCh fgExceptDomain[];
  92.     static const XMLCh fgFixedString[];
  93.     static const XMLCh fgIBM037EncodingString[];
  94.     static const XMLCh fgIBM037EncodingString2[];
  95.     static const XMLCh fgIBM1140EncodingString[];
  96.     static const XMLCh fgIESString[];
  97.     static const XMLCh fgIDString[];
  98.     static const XMLCh fgIDRefString[];
  99.     static const XMLCh fgIDRefsString[];
  100.     static const XMLCh fgImpliedString[];
  101.     static const XMLCh fgIgnoreString[];
  102.     static const XMLCh fgIncludeString[];
  103.     static const XMLCh fgISO88591EncodingString[];
  104.     static const XMLCh fgISO88591EncodingString2[];
  105.     static const XMLCh fgISO88591EncodingString3[];
  106.     static const XMLCh fgISO88591EncodingString4[];
  107.     static const XMLCh fgISO88591EncodingString5[];
  108.     static const XMLCh fgISO88591EncodingString6[];
  109.     static const XMLCh fgISO88591EncodingString7[];
  110.     static const XMLCh fgISO88591EncodingString8[];
  111.     static const XMLCh fgLocalHostString[];
  112.     static const XMLCh fgNoString[];
  113.     static const XMLCh fgNotationString[];
  114.     static const XMLCh fgNDATAString[];
  115.     static const XMLCh fgNmTokenString[];
  116.     static const XMLCh fgNmTokensString[];
  117.     static const XMLCh fgPCDATAString[];
  118.     static const XMLCh fgPIString[];
  119.     static const XMLCh fgPubIDString[];
  120.     static const XMLCh fgRefString[];
  121.     static const XMLCh fgRequiredString[];
  122.     static const XMLCh fgStandaloneString[];
  123.     static const XMLCh fgSupportedVersion[];
  124.     static const XMLCh fgSysIDString[];
  125.     static const XMLCh fgUnknownURIName[];
  126.     static const XMLCh fgUCS4EncodingString[];
  127.     static const XMLCh fgUCS4EncodingString2[];
  128.     static const XMLCh fgUCS4EncodingString3[];
  129.     static const XMLCh fgUCS4BEncodingString[];
  130.     static const XMLCh fgUCS4BEncodingString2[];
  131.     static const XMLCh fgUCS4LEncodingString[];
  132.     static const XMLCh fgUCS4LEncodingString2[];
  133.     static const XMLCh fgUSASCIIEncodingString[];
  134.     static const XMLCh fgUSASCIIEncodingString2[];
  135.     static const XMLCh fgUSASCIIEncodingString3[];
  136.     static const XMLCh fgUSASCIIEncodingString4[];
  137.     static const XMLCh fgUTF8EncodingString[];
  138.     static const XMLCh fgUTF8EncodingString2[];
  139.     static const XMLCh fgUTF16EncodingString[];
  140.     static const XMLCh fgUTF16EncodingString2[];
  141.     static const XMLCh fgUTF16EncodingString3[];
  142.     static const XMLCh fgUTF16EncodingString4[];
  143.     static const XMLCh fgUTF16BEncodingString[];
  144.     static const XMLCh fgUTF16BEncodingString2[];
  145.     static const XMLCh fgUTF16LEncodingString[];
  146.     static const XMLCh fgUTF16LEncodingString2[];
  147.     static const XMLCh fgVersionString[];
  148.     static const XMLCh fgValidityDomain[];
  149.     static const XMLCh fgWin1252EncodingString[];
  150.     static const XMLCh fgXMLChEncodingString[];
  151.     static const XMLCh fgXMLString[];
  152.     static const XMLCh fgXMLStringSpace[];
  153.     static const XMLCh fgXMLStringHTab[];
  154.     static const XMLCh fgXMLStringCR[];
  155.     static const XMLCh fgXMLStringLF[];
  156.     static const XMLCh fgXMLStringSpaceU[];
  157.     static const XMLCh fgXMLStringHTabU[];
  158.     static const XMLCh fgXMLStringCRU[];
  159.     static const XMLCh fgXMLStringLFU[];
  160.     static const XMLCh fgXMLDeclString[];
  161.     static const XMLCh fgXMLDeclStringSpace[];
  162.     static const XMLCh fgXMLDeclStringHTab[];
  163.     static const XMLCh fgXMLDeclStringLF[];
  164.     static const XMLCh fgXMLDeclStringCR[];
  165.     static const XMLCh fgXMLDeclStringSpaceU[];
  166.     static const XMLCh fgXMLDeclStringHTabU[];
  167.     static const XMLCh fgXMLDeclStringLFU[];
  168.     static const XMLCh fgXMLDeclStringCRU[];
  169.     static const XMLCh fgXMLNSString[];
  170.     static const XMLCh fgXMLNSColonString[];
  171.     static const XMLCh fgXMLNSURIName[];
  172.     static const XMLCh fgXMLErrDomain[];
  173.     static const XMLCh fgXMLURIName[];
  174.     static const XMLCh fgYesString[];
  175.     static const XMLCh fgZeroLenString[];
  176. static const XMLCh fgArrayIndexOutOfBoundsException_Name[];
  177. static const XMLCh fgEmptyStackException_Name[];
  178. static const XMLCh fgIllegalArgumentException_Name[];
  179. static const XMLCh fgInvalidCastException_Name[];
  180. static const XMLCh fgIOException_Name[];
  181. static const XMLCh fgNoSuchElementException_Name[];
  182. static const XMLCh fgNullPointerException_Name[];
  183. static const XMLCh fgXMLPlatformUtilsException_Name[];
  184. static const XMLCh fgRuntimeException_Name[];
  185. static const XMLCh fgTranscodingException_Name[];
  186. static const XMLCh fgUnexpectedEOFException_Name[];
  187. static const XMLCh fgUnsupportedEncodingException_Name[];
  188. static const XMLCh fgUTFDataFormatException_Name[];
  189. static const XMLCh fgNetAccessorException_Name[];
  190. static const XMLCh fgMalformedURLException_Name[];
  191. static const XMLCh fgNumberFormatException_Name[];
  192. static const XMLCh fgParseException_Name[];
  193. static const XMLCh fgInvalidDatatypeFacetException_Name[];
  194. static const XMLCh fgInvalidDatatypeValueException_Name[];
  195. static const XMLCh fgSchemaDateTimeException_Name[];
  196.     static const XMLCh fgXPathException_Name[];
  197.     static const XMLCh fgNegINFString[];
  198.     static const XMLCh fgNegZeroString[];
  199.     static const XMLCh fgNeuralZeroString[];
  200.     static const XMLCh fgPosZeroString[];
  201.     static const XMLCh fgPosINFString[];
  202.     static const XMLCh fgNaNString[];
  203.     static const XMLCh fgEString[];
  204.     static const XMLCh fgZeroString[];
  205. };
  206. #endif