Xalan-C++ API Documentation

The Xalan C++ XSLT Processor Version 1.8

Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members | Related Pages

XalanSourceTreeElementNANS.hpp

Go to the documentation of this file.
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(XALANSOURCETREEELEMENTNANS_HEADER_GUARD_1357924680)
00017 #define XALANSOURCETREEELEMENTNANS_HEADER_GUARD_1357924680
00018 
00019 
00020 
00021 #include <xalanc/XalanSourceTree/XalanSourceTreeDefinitions.hpp>
00022 
00023 
00024 
00025 #include <xalanc/XalanSourceTree/XalanSourceTreeElementNA.hpp>
00026 
00027 
00028 
00029 XALAN_CPP_NAMESPACE_BEGIN
00030 
00031 
00032 
00033 class XALAN_XALANSOURCETREE_EXPORT XalanSourceTreeElementNANS : public XalanSourceTreeElementNA
00034 {
00035 public:
00036 
00050     XalanSourceTreeElementNANS(
00051             const XalanDOMString&       theTagName,
00052             const XalanDOMString&       theLocalName,
00053             const XalanDOMString&       theNamespaceURI,
00054             const XalanDOMString&       thePrefix,
00055             XalanSourceTreeDocument*    theOwnerDocument,
00056             XalanNode*                  theParentNode = 0,
00057             XalanNode*                  thePreviousSibling = 0,
00058             XalanNode*                  theNextSibling = 0,
00059             IndexType                   theIndex = 0);
00060 
00061     virtual
00062     ~XalanSourceTreeElementNANS();
00063 
00064 
00065 #if defined(XALAN_NO_COVARIANT_RETURN_TYPE)
00066     virtual XalanNode*
00067 #else
00068     virtual XalanSourceTreeElementNANS*
00069 #endif
00070     cloneNode(bool deep) const;
00071 
00072     virtual const XalanDOMString&
00073     getNamespaceURI() const;
00074 
00075     virtual const XalanDOMString&
00076     getPrefix() const;
00077 
00078     virtual const XalanDOMString&
00079     getLocalName() const;
00080 
00081     // public interfaces not inherited from XalanElement...
00082 
00083     XalanSourceTreeElementNANS*
00084     clone(bool  deep) const
00085     {
00086         return new XalanSourceTreeElementNANS(*this, deep);
00087     }
00088 
00089 protected:
00090 
00091     XalanSourceTreeElementNANS(
00092             const XalanSourceTreeElementNANS&       theSource,
00093             bool                                deep = false);
00094 
00095 private:
00096 
00097     // Not implemented...
00098     XalanSourceTreeElementNANS&
00099     operator=(const XalanSourceTreeElementNANS& theSource);
00100 
00101     bool
00102     operator==(const XalanSourceTreeElementNANS&    theRHS) const;
00103 
00104 
00105     // Data members...
00106     const XalanDOMString&   m_localName;
00107 
00108     const XalanDOMString&   m_prefix;
00109 
00110     const XalanDOMString&   m_namespaceURI;
00111 };
00112 
00113 
00114 
00115 XALAN_CPP_NAMESPACE_END
00116 
00117 
00118 
00119 #endif  // !defined(XALANSOURCETREEELEMENTNANS_HEADER_GUARD_1357924680)

Interpreting class diagrams

Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.

Xalan-C++ XSLT Processor Version 1.8
Copyright © 1999-2004 The Apache Software Foundation. All Rights Reserved.