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(XALANDOCUMENTFRAGMENT_HEADER_GUARD_1357924680) 00019 #define XALANDOCUMENTFRAGMENT_HEADER_GUARD_1357924680 00020 00021 00022 00023 #include <xalanc/XalanDOM/XalanDOMDefinitions.hpp> 00024 #include <xalanc/XalanDOM/XalanNode.hpp> 00025 00026 00027 00028 XALAN_CPP_NAMESPACE_BEGIN 00029 00030 00031 00032 class XALAN_DOM_EXPORT XalanDocumentFragment : public XalanNode 00033 { 00034 public: 00035 00036 XalanDocumentFragment(); 00037 00038 virtual 00039 ~XalanDocumentFragment(); 00040 00041 // These interfaces are inherited from XalanNode... 00042 00043 virtual const XalanDOMString& 00044 getNodeName() const = 0; 00045 00046 virtual const XalanDOMString& 00047 getNodeValue() const = 0; 00048 00049 virtual NodeType 00050 getNodeType() const = 0; 00051 00052 virtual XalanNode* 00053 getParentNode() const = 0; 00054 00055 virtual const XalanNodeList* 00056 getChildNodes() const = 0; 00057 00058 virtual XalanNode* 00059 getFirstChild() const = 0; 00060 00061 virtual XalanNode* 00062 getLastChild() const = 0; 00063 00064 virtual XalanNode* 00065 getPreviousSibling() const = 0; 00066 00067 virtual XalanNode* 00068 getNextSibling() const = 0; 00069 00070 virtual const XalanNamedNodeMap* 00071 getAttributes() const = 0; 00072 00073 virtual XalanDocument* 00074 getOwnerDocument() const = 0; 00075 00076 virtual const XalanDOMString& 00077 getNamespaceURI() const = 0; 00078 00079 virtual const XalanDOMString& 00080 getPrefix() const = 0; 00081 00082 virtual const XalanDOMString& 00083 getLocalName() const = 0; 00084 00085 virtual bool 00086 isIndexed() const = 0; 00087 00088 virtual IndexType 00089 getIndex() const = 0; 00090 00091 protected: 00092 00093 XalanDocumentFragment(const XalanDocumentFragment& theSource); 00094 00095 XalanDocumentFragment& 00096 operator=(const XalanDocumentFragment& theSource); 00097 00098 bool 00099 operator==(const XalanDocumentFragment& theRHS) const; 00100 00101 private: 00102 }; 00103 00104 00105 00106 XALAN_CPP_NAMESPACE_END 00107 00108 00109 00110 #endif // !defined(XALANDOCUMENTFRAGMENT_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 |
|