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 
35 namespace XALAN_CPP_NAMESPACE {
36 
37 
38 
39 class XalanSourceTreeComment;
40 class XalanSourceTreeDocumentFragment;
41 class XalanSourceTreeElement;
42 class XalanSourceTreeProcessingInstruction;
43 
44 
45 
47 {
48 public:
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
60  terminate();
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  */
73  const XalanDOMString& theData,
74  XalanNode* theParentNode = 0,
75  XalanNode* thePreviousSibling = 0,
76  XalanNode* theNextSibling = 0,
77  IndexType theIndex = 0);
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*
95  getParentNode() const;
96 
97  virtual const XalanNodeList*
98  getChildNodes() const;
99 
100  virtual XalanNode*
101  getFirstChild() const;
102 
103  virtual XalanNode*
104  getLastChild() const;
105 
106  virtual XalanNode*
107  getPreviousSibling() const;
108 
109  virtual XalanNode*
110  getNextSibling() const;
111 
112  virtual const XalanNamedNodeMap*
113  getAttributes() const;
114 
115  virtual XalanDocument*
116  getOwnerDocument() const;
117 
118  virtual const XalanDOMString&
119  getNamespaceURI() const;
120 
121  virtual const XalanDOMString&
122  getPrefix() const;
123 
124  virtual const XalanDOMString&
125  getLocalName() const;
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
137  isWhitespace() const;
138 
139 
140  // public interfaces not inherited from XalanText...
141 
142  void
143  setParent(XalanSourceTreeElement* theParent);
144 
145  void
146  setParent(XalanSourceTreeDocumentFragment* theParent);
147 
148  void
149  setPreviousSibling(XalanSourceTreeComment* thePreviousSibling);
150 
151  void
152  setPreviousSibling(XalanSourceTreeElement* thePreviousSibling);
153 
154  void
155  setPreviousSibling(XalanSourceTreeProcessingInstruction* thePreviousSibling);
156 
157  void
158  setPreviousSibling(XalanSourceTreeText* thePreviousSibling);
159 
160  void
161  appendSiblingNode(XalanSourceTreeComment* theSibling);
162 
163  void
164  appendSiblingNode(XalanSourceTreeElement* theSibling);
165 
166  void
167  appendSiblingNode(XalanSourceTreeProcessingInstruction* theSibling);
168 
169  void
170  appendSiblingNode(XalanSourceTreeText* theSibling);
171 
172  void
173  setIndex(IndexType theIndex)
174  {
175  m_index = theIndex;
176  }
177 
178 private:
179 
180  // Not implemented...
182 
184  operator=(const XalanSourceTreeText& theSource);
185 
186  bool
187  operator==(const XalanSourceTreeText& theRHS) const;
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)
xalanc::XalanSourceTreeDocumentFragment
Definition: XalanSourceTreeDocumentFragment.hpp:49
XALAN_CPP_NAMESPACE
#define XALAN_CPP_NAMESPACE
Xalan-C++ namespace, including major and minor version.
Definition: XalanVersion.hpp:76
XalanText.hpp
xalanc::XalanNode
Definition: XalanNode.hpp:38
xalanc::XalanNode::NodeType
NodeType
Definition: XalanNode.hpp:47
XalanDOMString.hpp
xalanc::XalanText
Definition: XalanText.hpp:40
xalanc::XalanDocument
Definition: XalanDocument.hpp:36
xalanc::operator==
bool operator==(const XalanVector< Type > &theLHS, const XalanVector< Type > &theRHS)
Definition: XalanVector.hpp:1118
xalanc::XalanSourceTreeComment
Definition: XalanSourceTreeComment.hpp:47
xalanc::XalanNodeList
Definition: XalanNodeList.hpp:36
XalanSourceTreeDefinitions.hpp
xalanc::XalanNamedNodeMap
Definition: XalanNamedNodeMap.hpp:36
xalanc::XalanSourceTreeText::setIndex
void setIndex(IndexType theIndex)
Definition: XalanSourceTreeText.hpp:173
xalanc::XalanSourceTreeText
Definition: XalanSourceTreeText.hpp:46
XALAN_XALANSOURCETREE_EXPORT
#define XALAN_XALANSOURCETREE_EXPORT
Definition: XalanSourceTreeDefinitions.hpp:35
xalanc::XalanSourceTreeElement
Definition: XalanSourceTreeElement.hpp:46
xalanc::XalanDOMString
Definition: XalanDOMString.hpp:45
xalanc::XalanSourceTreeProcessingInstruction
Definition: XalanSourceTreeProcessingInstruction.hpp:47