Xalan-C++ API Reference 1.12.0
XalanSourceTreeText.hpp
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18#if !defined(XALANSOURCETREETEXT_HEADER_GUARD_1357924680)
19#define XALANSOURCETREETEXT_HEADER_GUARD_1357924680
20
21
22
24
25
26
28
29
30
32
33
34
35namespace XALAN_CPP_NAMESPACE {
36
37
38
39class XalanSourceTreeComment;
40class XalanSourceTreeDocumentFragment;
41class XalanSourceTreeElement;
42class XalanSourceTreeProcessingInstruction;
43
44
45
47{
48public:
49
50 /**
51 * Perform static initialization. See class XalanSourceTreeInit.
52 */
53 static void
54 initialize(MemoryManager& theManager);
55
56 /**
57 * Perform static shut down. See class XalanSourceTreeInit.
58 */
59 static void
61
62 /**
63 * Constructor.
64 *
65 * @param theData The text data of the node
66 * @param isWhitespace true if the text data is only whitespace
67 * @param theParentNode The parent node, if any.
68 * @param thePreviousSibling The previous sibling, if any.
69 * @param theNextSibling The next sibling, if any.
70 * @param theIndex The document-order index of the node.
71 */
78
79 virtual
81
82
83 // These interfaces are inherited from XalanText...
84
85 virtual const XalanDOMString&
86 getNodeName() const;
87
88 virtual const XalanDOMString&
89 getNodeValue() const;
90
91 virtual NodeType
92 getNodeType() const;
93
94 virtual XalanNode*
96
97 virtual const XalanNodeList*
99
100 virtual XalanNode*
102
103 virtual XalanNode*
105
106 virtual XalanNode*
108
109 virtual XalanNode*
111
112 virtual const XalanNamedNodeMap*
114
115 virtual XalanDocument*
117
118 virtual const XalanDOMString&
120
121 virtual const XalanDOMString&
122 getPrefix() const;
123
124 virtual const XalanDOMString&
126
127 virtual bool
128 isIndexed() const;
129
130 virtual IndexType
131 getIndex() const;
132
133 virtual const XalanDOMString&
134 getData() const;
135
136 virtual bool
138
139
140 // public interfaces not inherited from XalanText...
141
142 void
144
145 void
147
148 void
150
151 void
153
154 void
156
157 void
159
160 void
162
163 void
165
166 void
168
169 void
171
172 void
174 {
175 m_index = theIndex;
176 }
177
178private:
179
180 // Not implemented...
182
184 operator=(const XalanSourceTreeText& theSource);
185
186 bool
188
189
190 // Data members...
191 const XalanDOMString& m_data;
192
193 XalanNode* m_parentNode;
194
195 XalanNode* m_previousSibling;
196
197 XalanNode* m_nextSibling;
198
199 IndexType m_index;
200
201 static const XalanDOMString& s_nameString;
202};
203
204
205
206}
207
208
209
210#endif // !defined(XALANSOURCETREETEXT_HEADER_GUARD_1357924680)
#define XALAN_XALANSOURCETREE_EXPORT
#define XALAN_CPP_NAMESPACE
Xalan-C++ namespace, including major and minor version.
virtual const XalanDOMString & getData() const
Returns the character data of the node that implements this interface.
void appendSiblingNode(XalanSourceTreeComment *theSibling)
virtual XalanNode * getNextSibling() const
Gets the node immediately following this node.
virtual NodeType getNodeType() const
An enum value representing the type of the underlying object.
static void terminate()
Perform static shut down.
void setPreviousSibling(XalanSourceTreeElement *thePreviousSibling)
virtual bool isWhitespace() const
Determine whether the text node instance is composed entirely of XML whitespace.
virtual const XalanDOMString & getNamespaceURI() const
Get the namespace URI of this node, or null if it is unspecified.
void setPreviousSibling(XalanSourceTreeProcessingInstruction *thePreviousSibling)
virtual const XalanDOMString & getLocalName() const
Returns the local part of the qualified name of this node.
void setIndex(IndexType theIndex)
static void initialize(MemoryManager &theManager)
Perform static initialization.
void setParent(XalanSourceTreeElement *theParent)
void setPreviousSibling(XalanSourceTreeText *thePreviousSibling)
virtual const XalanDOMString & getPrefix() const
Get the namespace prefix of this node, or null if it is unspecified.
void appendSiblingNode(XalanSourceTreeElement *theSibling)
virtual const XalanDOMString & getNodeValue() const
Gets the value of this node, depending on its type.
void appendSiblingNode(XalanSourceTreeText *theSibling)
virtual XalanNode * getLastChild() const
Gets the last child of this node.
virtual XalanNode * getFirstChild() const
Gets the first child of this node.
void setParent(XalanSourceTreeDocumentFragment *theParent)
virtual const XalanDOMString & getNodeName() const
Gets the name of this node, depending on its type.
virtual XalanDocument * getOwnerDocument() const
Gets the Document object associated with this node.
virtual const XalanNodeList * getChildNodes() const
Gets a NodeList that contains all children of this node.
virtual const XalanNamedNodeMap * getAttributes() const
Gets a NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
virtual XalanNode * getParentNode() const
Gets the parent of this node.
virtual XalanNode * getPreviousSibling() const
Gets the node immediately preceding this node.
XalanSourceTreeText(const XalanDOMString &theData, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0, IndexType theIndex=0)
Constructor.
virtual IndexType getIndex() const
Get the node's index.
void appendSiblingNode(XalanSourceTreeProcessingInstruction *theSibling)
virtual bool isIndexed() const
Determine if the document is node-order indexed.
void setPreviousSibling(XalanSourceTreeComment *thePreviousSibling)
bool operator==(const XalanVector< Type > &theLHS, const XalanVector< Type > &theRHS)