00001 /* 00002 * The Apache Software License, Version 1.1 00003 * 00004 * 00005 * Copyright (c) 1999-2004 The Apache Software Foundation. All rights 00006 * reserved. 00007 * 00008 * Redistribution and use in source and binary forms, with or without 00009 * modification, are permitted provided that the following conditions 00010 * are met: 00011 * 00012 * 1. Redistributions of source code must retain the above copyright 00013 * notice, this list of conditions and the following disclaimer. 00014 * 00015 * 2. Redistributions in binary form must reproduce the above copyright 00016 * notice, this list of conditions and the following disclaimer in 00017 * the documentation and/or other materials provided with the 00018 * distribution. 00019 * 00020 * 3. The end-user documentation included with the redistribution, 00021 * if any, must include the following acknowledgment: 00022 * "This product includes software developed by the 00023 * Apache Software Foundation (http://www.apache.org/)." 00024 * Alternately, this acknowledgment may appear in the software itself, 00025 * if and wherever such third-party acknowledgments normally appear. 00026 * 00027 * 4. The names "Xalan" and "Apache Software Foundation" must 00028 * not be used to endorse or promote products derived from this 00029 * software without prior written permission. For written 00030 * permission, please contact apache@apache.org. 00031 * 00032 * 5. Products derived from this software may not be called "Apache", 00033 * nor may "Apache" appear in their name, without prior written 00034 * permission of the Apache Software Foundation. 00035 * 00036 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED 00037 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00038 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00039 * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR 00040 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00041 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00042 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 00043 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00044 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 00045 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 00046 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00047 * SUCH DAMAGE. 00048 * ==================================================================== 00049 * 00050 * This software consists of voluntary contributions made by many 00051 * individuals on behalf of the Apache Software Foundation and was 00052 * originally based on software copyright (c) 1999, International 00053 * Business Machines, Inc., http://www.ibm.com. For more 00054 * information on the Apache Software Foundation, please see 00055 * <http://www.apache.org/>. 00056 */ 00057 00058 #if !defined(XERCESDOM_NODEHACK_HEADER_GUARD_1357924680) 00059 #define XERCESDOM_NODEHACK_HEADER_GUARD_1357924680 00060 00061 00062 00063 #include <xalanc/XercesParserLiaison/XercesParserLiaisonDefinitions.hpp> 00064 00065 00066 00067 #if XERCES_VERSION_MAJOR >= 2 00068 #include <xercesc/dom/deprecated/DOM_Node.hpp> 00069 #include <xercesc/dom/deprecated/DOM_Attr.hpp> 00070 #include <xercesc/dom/deprecated/DOM_Element.hpp> 00071 #include <xercesc/dom/deprecated/DOM_Text.hpp> 00072 #else 00073 #include <xercesc/dom/DOM_Node.hpp> 00074 #include <xercesc/dom/DOM_Attr.hpp> 00075 #include <xercesc/dom/DOM_Element.hpp> 00076 #include <xercesc/dom/DOM_Text.hpp> 00077 #endif 00078 00079 00080 00081 #include <xalanc/XercesParserLiaison/Deprecated/XercesBridgeTypes.hpp> 00082 00083 00084 00085 XALAN_CPP_NAMESPACE_BEGIN 00086 00087 00096 class XALAN_XERCESPARSERLIAISON_EXPORT XercesDOM_NodeHack : public XERCES_CPP_NAMESPACE_QUALIFIER DOM_Node 00097 { 00098 public: 00099 00100 typedef XERCES_CPP_NAMESPACE_QUALIFIER DOM_Node ParentType; 00101 00102 XercesDOM_NodeHack(NodeImplType* theImpl = 0); 00103 00104 ~XercesDOM_NodeHack(); 00105 00106 NodeImplType* 00107 getImpl() const 00108 { 00109 return fImpl; 00110 } 00111 00112 static NodeImplType* 00113 getImpl(const ParentType& theNode) 00114 { 00115 #if defined(XALAN_OLD_STYLE_CASTS) 00116 return ((const XercesDOM_NodeHack&)theNode).getImpl(); 00117 #else 00118 return static_cast<const XercesDOM_NodeHack&>(theNode).getImpl(); 00119 #endif 00120 } 00121 }; 00122 00123 00124 00125 class XALAN_XERCESPARSERLIAISON_EXPORT XercesDOM_AttrHack : public XERCES_CPP_NAMESPACE_QUALIFIER DOM_Attr 00126 { 00127 public: 00128 00129 typedef XERCES_CPP_NAMESPACE_QUALIFIER DOM_Attr ParentType; 00130 00131 XercesDOM_AttrHack(AttrImplType* theImpl = 0); 00132 00133 XercesDOM_AttrHack(const ParentType& theSource); 00134 00135 ~XercesDOM_AttrHack(); 00136 }; 00137 00138 00139 00140 class XALAN_XERCESPARSERLIAISON_EXPORT XercesDOM_ElementHack : public XERCES_CPP_NAMESPACE_QUALIFIER DOM_Element 00141 { 00142 public: 00143 00144 typedef XERCES_CPP_NAMESPACE_QUALIFIER DOM_Element ParentType; 00145 00146 XercesDOM_ElementHack(ElementImplType* theImpl = 0); 00147 00148 XercesDOM_ElementHack(const ParentType& theSource); 00149 00150 ~XercesDOM_ElementHack(); 00151 00152 00153 const DOMStringType 00154 getNodeNameImpl() const; 00155 00156 const DOMStringType 00157 getNodeValueImpl() const; 00158 00159 const DOMStringType 00160 getNamespaceURIImpl() const; 00161 00162 const DOMStringType 00163 getPrefixImpl() const; 00164 00165 const DOMStringType 00166 getLocalNameImpl() const; 00167 00168 const DOMStringType 00169 getTagNameImpl() const; 00170 00171 const DOMStringType 00172 getAttributeImpl(const DOMStringType& name) const; 00173 00174 const DOMStringType 00175 getAttributeNSImpl( 00176 const DOMStringType& namespaceURI, 00177 const DOMStringType& localName) const; 00178 00179 ElementImplType* 00180 getImpl() const 00181 { 00182 #if defined(XALAN_OLD_STYLE_CASTS) 00183 return (ElementImplType*)fImpl; 00184 #else 00185 return reinterpret_cast<ElementImplType*>(fImpl); 00186 #endif 00187 } 00188 00189 static ElementImplType* 00190 getImpl(const ParentType& theNode) 00191 { 00192 #if defined(XALAN_OLD_STYLE_CASTS) 00193 return ((const XercesDOM_ElementHack&)theNode).getImpl(); 00194 #else 00195 return static_cast<const XercesDOM_ElementHack&>(theNode).getImpl(); 00196 #endif 00197 } 00198 }; 00199 00200 00201 00202 class XALAN_XERCESPARSERLIAISON_EXPORT XercesDOM_TextHack : public XERCES_CPP_NAMESPACE_QUALIFIER DOM_Text 00203 { 00204 public: 00205 00206 typedef XERCES_CPP_NAMESPACE_QUALIFIER DOM_Text ParentType; 00207 00208 XercesDOM_TextHack(TextImplType* theImpl = 0); 00209 00210 XercesDOM_TextHack(const ParentType& theSource); 00211 00212 ~XercesDOM_TextHack(); 00213 00214 00215 const DOMStringType 00216 getNodeNameImpl() const; 00217 00218 const DOMStringType 00219 getNodeValueImpl() const; 00220 00221 const DOMStringType 00222 getNamespaceURIImpl() const; 00223 00224 const DOMStringType 00225 getPrefixImpl() const; 00226 00227 const DOMStringType 00228 getLocalNameImpl() const; 00229 00230 const DOMStringType 00231 getDataImpl() const; 00232 00233 TextImplType* 00234 getImpl() const 00235 { 00236 #if defined(XALAN_OLD_STYLE_CASTS) 00237 return (TextImplType*)fImpl; 00238 #else 00239 return reinterpret_cast<TextImplType*>(fImpl); 00240 #endif 00241 } 00242 00243 static TextImplType* 00244 getImpl(const ParentType& theNode) 00245 { 00246 #if defined(XALAN_OLD_STYLE_CASTS) 00247 return ((const XercesDOM_TextHack&)theNode).getImpl(); 00248 #else 00249 return static_cast<const XercesDOM_TextHack&>(theNode).getImpl(); 00250 #endif 00251 } 00252 }; 00253 00254 00255 00256 XALAN_CPP_NAMESPACE_END 00257 00258 00259 00260 #endif // !defined(XERCESDOM_NODEHACK_HEADER_GUARD_1357924680)
Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.
![]() |
Xalan-C++ XSLT Processor Version 1.7 |
|