Xalan-C++ API Documentation

The Xalan C++ XSLT Processor Version 1.8

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

XObjectResultTreeFragProxyBase.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(XOBJECTRESULTTREEFRAGPROXYBASE_HEADER_GUARD_1357924680)
00017 #define XOBJECTRESULTTREEFRAGPROXYBASE_HEADER_GUARD_1357924680
00018 
00019 
00020 
00021 // Base include file.  Must be first.
00022 #include <xalanc/XPath/XPathDefinitions.hpp>
00023 
00024 
00025 
00026 #include <xalanc/XalanDOM/XalanNodeList.hpp>
00027 #include <xalanc/XalanDOM/XalanDocumentFragment.hpp>
00028 
00029 
00030 
00031 #include <xalanc/XPath/XObjectResultTreeFragProxyText.hpp>
00032 
00033 
00034 
00035 
00036 XALAN_CPP_NAMESPACE_BEGIN
00037 
00038 
00039 
00040 class XALAN_XPATH_EXPORT XObjectResultTreeFragProxyBase : public XalanDocumentFragment
00041 {
00042 public:
00043 
00044     XObjectResultTreeFragProxyBase();
00045 
00046     virtual
00047     ~XObjectResultTreeFragProxyBase();
00048 
00049 
00050     // These interfaces are inherited from XalanDocumentFragment...
00051 
00052     virtual const XalanDOMString&
00053     getNodeName() const;
00054 
00055     virtual const XalanDOMString&
00056     getNodeValue() const;
00057 
00058     virtual NodeType
00059     getNodeType() const;
00060 
00061     virtual XalanNode*
00062     getParentNode() const;
00063 
00064     virtual const XalanNodeList*
00065     getChildNodes() const;
00066 
00067     virtual XalanNode*
00068     getFirstChild() const = 0;
00069 
00070     virtual XalanNode*
00071     getLastChild() const = 0;
00072 
00073     virtual XalanNode*
00074     getPreviousSibling() const;
00075 
00076     virtual XalanNode*
00077     getNextSibling() const;
00078 
00079     virtual const XalanNamedNodeMap*
00080     getAttributes() const;
00081 
00082     virtual XalanDocument*
00083     getOwnerDocument() const;
00084 
00085 #if defined(XALAN_NO_COVARIANT_RETURN_TYPE)
00086     virtual XalanNode*
00087 #else
00088     virtual XObjectResultTreeFragProxyBase*
00089 #endif
00090     cloneNode(bool deep) const;
00091 
00092     virtual XalanNode*
00093     insertBefore(
00094             XalanNode*  newChild,
00095             XalanNode*  refChild);
00096 
00097     virtual XalanNode*
00098     replaceChild(
00099             XalanNode*  newChild,
00100             XalanNode*  oldChild);
00101 
00102     virtual XalanNode*
00103     removeChild(XalanNode*  oldChild);
00104 
00105     virtual XalanNode*
00106     appendChild(XalanNode*  newChild);
00107 
00108     virtual bool
00109     hasChildNodes() const = 0;
00110 
00111     virtual void
00112     setNodeValue(const XalanDOMString&  nodeValue);
00113 
00114     virtual void
00115     normalize();
00116 
00117     virtual bool
00118     isSupported(
00119             const XalanDOMString&   feature,
00120             const XalanDOMString&   version) const;
00121 
00122     virtual const XalanDOMString&
00123     getNamespaceURI() const;
00124 
00125     virtual const XalanDOMString&
00126     getPrefix() const;
00127 
00128     virtual const XalanDOMString&
00129     getLocalName() const;
00130 
00131     virtual void
00132     setPrefix(const XalanDOMString&     prefix);
00133 
00134     virtual bool
00135     isIndexed() const;
00136 
00137     virtual IndexType
00138     getIndex() const;
00139 
00140 #if defined(XALAN_NO_COVARIANT_RETURN_TYPE)
00141     virtual XalanDocumentFragment*
00142 #else
00143     virtual XObjectResultTreeFragProxyBase*
00144 #endif
00145     clone(bool  deep) const;
00146 
00147 protected:
00148 
00149     XObjectResultTreeFragProxyBase(const XObjectResultTreeFragProxyBase&    theRHS);
00150 
00151 private:
00152 
00153     // Not implemented...
00154     XObjectResultTreeFragProxyBase&
00155     operator=(const XObjectResultTreeFragProxyBase& theRHS);
00156 
00157     bool
00158     operator==(const XObjectResultTreeFragProxyBase&    theRHS);
00159 
00160 
00161     // Data members...
00162     static const XalanDOMString             s_emptyString;
00163 };
00164 
00165 
00166 
00167 XALAN_CPP_NAMESPACE_END
00168 
00169 
00170 
00171 #endif  // XOBJECTRESULTTREEFRAGPROXYBASE_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.