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 #if !defined(XALANQNAMEBYVALUE_HEADER_GUARD_1357924680) 00058 #define XALANQNAMEBYVALUE_HEADER_GUARD_1357924680 00059 00060 00061 00062 // Base header file. Must be first. 00063 #include <xalanc/XPath/XPathDefinitions.hpp> 00064 00065 00066 00067 // Base class header file... 00068 #include <xalanc/XPath/XalanQName.hpp> 00069 00070 00071 00072 XALAN_DECLARE_XERCES_CLASS(Locator) 00073 00074 00075 00076 XALAN_CPP_NAMESPACE_BEGIN 00077 00078 00079 00080 class DOMSupport; 00081 00082 00083 00084 class XALAN_XPATH_EXPORT XalanQNameByValue : public XalanQName 00085 { 00086 public: 00087 00088 typedef XERCES_CPP_NAMESPACE_QUALIFIER Locator LocatorType; 00089 00093 explicit 00094 XalanQNameByValue(); 00095 00101 XalanQNameByValue(const XalanQNameByValue& theSource); 00102 00108 explicit 00109 XalanQNameByValue(const XalanQName& theSource); 00110 00117 XalanQNameByValue( 00118 const XalanDOMString& theNamespace, 00119 const XalanDOMString& theLocalPart); 00120 00130 XalanQNameByValue( 00131 const XalanDOMString& qname, 00132 const NamespacesStackType& namespaces, 00133 const LocatorType* locator = 0, 00134 bool fUseDefault = false); 00135 00145 XalanQNameByValue( 00146 const XalanDOMChar* qname, 00147 const NamespacesStackType& namespaces, 00148 const LocatorType* locator = 0, 00149 bool fUseDefault = false); 00150 00161 XalanQNameByValue( 00162 const XalanDOMString& qname, 00163 const XalanElement* namespaceContext, 00164 const XPathEnvSupport& envSupport, 00165 const DOMSupport& domSupport, 00166 const LocatorType* locator = 0); 00167 00176 XalanQNameByValue( 00177 const XalanDOMString& qname, 00178 const PrefixResolver* theResolver = 0, 00179 const LocatorType* locator = 0); 00180 00181 virtual 00182 ~XalanQNameByValue(); 00183 00189 virtual const XalanDOMString& 00190 getLocalPart() const; 00191 00197 void 00198 setLocalPart(const XalanDOMString& theLocalPart) 00199 { 00200 m_localpart = theLocalPart; 00201 } 00202 00208 virtual const XalanDOMString& 00209 getNamespace() const; 00210 00216 void 00217 setNamespace(const XalanDOMString& theNamespace) 00218 { 00219 m_namespace = theNamespace; 00220 } 00221 00232 void 00233 set( 00234 const XalanDOMString& qname, 00235 const NamespacesStackType& namespaces, 00236 const LocatorType* locator = 0, 00237 bool fUseDefault = false); 00238 00249 void 00250 set( 00251 const XalanDOMChar* qname, 00252 const NamespacesStackType& namespaces, 00253 const LocatorType* locator = 0, 00254 bool fUseDefault = false); 00255 00265 void 00266 set( 00267 const XalanDOMString& qname, 00268 const PrefixResolver* theResolver = 0, 00269 const LocatorType* locator = 0); 00270 00280 void 00281 set( 00282 const XalanDOMChar* qname, 00283 const PrefixResolver* theResolver = 0, 00284 const LocatorType* locator = 0); 00288 void 00289 clear() 00290 { 00291 m_namespace.clear(); 00292 m_localpart.clear(); 00293 } 00294 00295 XalanQNameByValue& 00296 operator=(const XalanQNameByValue& theRHS) 00297 { 00298 m_namespace = theRHS.m_namespace; 00299 m_localpart = theRHS.m_localpart; 00300 00301 return *this; 00302 } 00303 00304 XalanQNameByValue& 00305 operator=(const XalanQName& theRHS) 00306 { 00307 m_namespace = theRHS.getNamespace(); 00308 m_localpart = theRHS.getLocalPart(); 00309 00310 return *this; 00311 } 00312 00313 private: 00314 00315 void 00316 initialize( 00317 const XalanDOMChar* qname, 00318 XalanDOMString::size_type len, 00319 const NamespacesStackType& namespaces, 00320 const LocatorType* locator, 00321 bool fUseDefault); 00322 00323 void 00324 resolvePrefix( 00325 const XalanDOMChar* qname, 00326 XalanDOMString::size_type theLength, 00327 const PrefixResolver* theResolver, 00328 const LocatorType* locator); 00329 00330 void 00331 validate( 00332 const XalanDOMChar* qname, 00333 XalanDOMString::size_type theLength, 00334 const LocatorType* locator); 00335 00336 // Data members... 00337 XalanDOMString m_namespace; 00338 00339 XalanDOMString m_localpart; 00340 }; 00341 00342 00343 00344 XALAN_CPP_NAMESPACE_END 00345 00346 00347 00348 #endif // XALANQNAMEBYVALUE_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 |
|