00001 /* 00002 * Licensed to the Apache Software Foundation (ASF) under one 00003 * or more contributor license agreements. See the NOTICE file 00004 * distributed with this work for additional information 00005 * regarding copyright ownership. The ASF licenses this file 00006 * to you under the Apache License, Version 2.0 (the "License"); 00007 * you may not use this file except in compliance with the License. 00008 * You may obtain a copy of the License at 00009 * 00010 * http://www.apache.org/licenses/LICENSE-2.0 00011 * 00012 * Unless required by applicable law or agreed to in writing, software 00013 * distributed under the License is distributed on an "AS IS" BASIS, 00014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00015 * See the License for the specific language governing permissions and 00016 * limitations under the License. 00017 */ 00018 #if !defined(XOBJECTRESULTTREEFRAGPROXYBASE_HEADER_GUARD_1357924680) 00019 #define XOBJECTRESULTTREEFRAGPROXYBASE_HEADER_GUARD_1357924680 00020 00021 00022 00023 // Base include file. Must be first. 00024 #include <xalanc/XPath/XPathDefinitions.hpp> 00025 00026 #include <xalanc/Include/XalanMemoryManagement.hpp> 00027 00028 00029 #include <xalanc/XalanDOM/XalanNodeList.hpp> 00030 #include <xalanc/XalanDOM/XalanDocumentFragment.hpp> 00031 00032 00033 00034 XALAN_CPP_NAMESPACE_BEGIN 00035 00036 00037 00038 class XALAN_XPATH_EXPORT XObjectResultTreeFragProxyBase : public XalanDocumentFragment 00039 { 00040 public: 00041 00042 XObjectResultTreeFragProxyBase(); 00043 00044 virtual 00045 ~XObjectResultTreeFragProxyBase(); 00046 00047 00048 // These interfaces are inherited from XalanDocumentFragment... 00049 00050 virtual const XalanDOMString& 00051 getNodeName() const; 00052 00053 virtual const XalanDOMString& 00054 getNodeValue() const; 00055 00056 virtual NodeType 00057 getNodeType() const; 00058 00059 virtual XalanNode* 00060 getParentNode() const; 00061 00062 virtual const XalanNodeList* 00063 getChildNodes() const; 00064 00065 virtual XalanNode* 00066 getFirstChild() const = 0; 00067 00068 virtual XalanNode* 00069 getLastChild() const = 0; 00070 00071 virtual XalanNode* 00072 getPreviousSibling() const; 00073 00074 virtual XalanNode* 00075 getNextSibling() const; 00076 00077 virtual const XalanNamedNodeMap* 00078 getAttributes() const; 00079 00080 virtual XalanDocument* 00081 getOwnerDocument() const; 00082 00083 virtual const XalanDOMString& 00084 getNamespaceURI() const; 00085 00086 virtual const XalanDOMString& 00087 getPrefix() const; 00088 00089 virtual const XalanDOMString& 00090 getLocalName() const; 00091 00092 virtual bool 00093 isIndexed() const; 00094 00095 virtual IndexType 00096 getIndex() const; 00097 00098 protected: 00099 00100 XObjectResultTreeFragProxyBase(const XObjectResultTreeFragProxyBase& theRHS); 00101 00102 private: 00103 00104 // Not implemented... 00105 XObjectResultTreeFragProxyBase& 00106 operator=(const XObjectResultTreeFragProxyBase& theRHS); 00107 00108 bool 00109 operator==(const XObjectResultTreeFragProxyBase& theRHS); 00110 00111 00112 // Data members... 00113 static const XalanDOMString s_emptyString; 00114 }; 00115 00116 00117 00118 XALAN_CPP_NAMESPACE_END 00119 00120 00121 00122 #endif // XOBJECTRESULTTREEFRAGPROXYBASE_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.11 |
|