00001 /* 00002 * Copyright 1999-2004 The Apache Software Foundation. 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 #if !defined(XALANSOURCETREEATTRNS_HEADER_GUARD_1357924680) 00017 #define XALANSOURCETREEATTRNS_HEADER_GUARD_1357924680 00018 00019 00020 00021 #include <xalanc/XalanSourceTree/XalanSourceTreeDefinitions.hpp> 00022 00023 00024 00025 #include <xalanc/XalanSourceTree/XalanSourceTreeAttr.hpp> 00026 00027 00028 00029 XALAN_CPP_NAMESPACE_BEGIN 00030 00031 00032 00033 /* 00034 * <meta name="usage" content="experimental"/> 00035 * 00036 * Base class for the Xalan source tree Attr interface. 00037 * 00038 * This class is experimental and subject to change!! 00039 */ 00040 00041 class XALAN_XALANSOURCETREE_EXPORT XalanSourceTreeAttrNS : public XalanSourceTreeAttr 00042 { 00043 public: 00044 00056 XalanSourceTreeAttrNS( 00057 const XalanDOMString& theName, 00058 const XalanDOMString& theLocalName, 00059 const XalanDOMString& theNamespaceURI, 00060 const XalanDOMString& thePrefix, 00061 const XalanDOMString& theValue, 00062 XalanSourceTreeElement* theOwnerElement = 0, 00063 IndexType theIndex = 0); 00064 00065 virtual 00066 ~XalanSourceTreeAttrNS(); 00067 00068 00069 #if defined(XALAN_NO_COVARIANT_RETURN_TYPE) 00070 virtual XalanNode* 00071 #else 00072 virtual XalanSourceTreeAttrNS* 00073 #endif 00074 cloneNode(bool deep) const; 00075 00076 virtual const XalanDOMString& 00077 getNamespaceURI() const; 00078 00079 virtual const XalanDOMString& 00080 getPrefix() const; 00081 00082 virtual const XalanDOMString& 00083 getLocalName() const; 00084 00085 protected: 00086 00087 XalanSourceTreeAttrNS( 00088 const XalanSourceTreeAttrNS& theSource, 00089 bool deep = false); 00090 00091 XalanSourceTreeAttrNS( 00092 const XalanSourceTreeAttr& theSource, 00093 bool deep = false); 00094 00095 private: 00096 00097 // Not defined... 00098 XalanSourceTreeAttrNS& 00099 operator=(const XalanSourceTreeAttrNS& theSource); 00100 00101 bool 00102 operator==(const XalanSourceTreeAttrNS& theRHS) const; 00103 00104 // Data members... 00105 const XalanDOMString& m_localName; 00106 00107 const XalanDOMString& m_prefix; 00108 00109 const XalanDOMString& m_namespaceURI; 00110 }; 00111 00112 00113 00114 XALAN_CPP_NAMESPACE_END 00115 00116 00117 00118 #endif // !defined(XALANSOURCETREEATTRNS_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.10 |
|