Xalan-C++ API Reference
1.12.0
xalanc
XalanSourceTree
XalanSourceTreeComment.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(XALANSOURCETREECOMMENT_HEADER_GUARD_1357924680)
19
#define XALANSOURCETREECOMMENT_HEADER_GUARD_1357924680
20
21
22
23
#include <
xalanc/XalanSourceTree/XalanSourceTreeDefinitions.hpp
>
24
25
26
27
#include <
xalanc/XalanDOM/XalanComment.hpp
>
28
29
30
31
#include <
xalanc/XalanDOM/XalanDOMString.hpp
>
32
33
34
35
namespace
XALAN_CPP_NAMESPACE
{
36
37
38
39
class
XalanSourceTreeDocument;
40
class
XalanSourceTreeDocumentFragment;
41
class
XalanSourceTreeElement;
42
class
XalanSourceTreeProcessingInstruction;
43
class
XalanSourceTreeText;
44
45
46
47
class
XALAN_XALANSOURCETREE_EXPORT
XalanSourceTreeComment
:
public
XalanComment
48
{
49
public
:
50
51
/**
52
* Perform static initialization. See class XalanSourceTreeInit.
53
*/
54
static
void
55
initialize(MemoryManager& theManager);
56
57
/**
58
* Perform static shut down. See class XalanSourceTreeInit.
59
*/
60
static
void
61
terminate();
62
63
64
/**
65
* Constructor.
66
*
67
* @param theData The text data of the node.
68
* @param theOwnerDocument The owner document of the comment node.
69
* @param theParentNode The parent node, if any.
70
* @param thePreviousSibling The previous sibling, if any.
71
* @param theNextSibling The next sibling, if any.
72
* @param theIndex The document-order index of the node.
73
*/
74
XalanSourceTreeComment
(
75
const
XalanDOMString
& theData,
76
XalanSourceTreeDocument
* theOwnerDocument,
77
XalanNode
* theParentNode = 0,
78
XalanNode
* thePreviousSibling = 0,
79
XalanNode
* theNextSibling = 0,
80
IndexType
theIndex = 0);
81
82
virtual
83
~
XalanSourceTreeComment
();
84
85
// These interfaces are inherited from XalanComment
86
virtual
const
XalanDOMString
&
87
getNodeName()
const
;
88
89
virtual
const
XalanDOMString
&
90
getNodeValue()
const
;
91
92
virtual
NodeType
93
getNodeType()
const
;
94
95
virtual
XalanNode
*
96
getParentNode()
const
;
97
98
virtual
const
XalanNodeList
*
99
getChildNodes()
const
;
100
101
virtual
XalanNode
*
102
getFirstChild()
const
;
103
104
virtual
XalanNode
*
105
getLastChild()
const
;
106
107
virtual
XalanNode
*
108
getPreviousSibling()
const
;
109
110
virtual
XalanNode
*
111
getNextSibling()
const
;
112
113
virtual
const
XalanNamedNodeMap
*
114
getAttributes()
const
;
115
116
virtual
XalanDocument
*
117
getOwnerDocument()
const
;
118
119
virtual
const
XalanDOMString
&
120
getNamespaceURI()
const
;
121
122
virtual
const
XalanDOMString
&
123
getPrefix()
const
;
124
125
virtual
const
XalanDOMString
&
126
getLocalName()
const
;
127
128
virtual
bool
129
isIndexed()
const
;
130
131
virtual
IndexType
132
getIndex()
const
;
133
134
virtual
const
XalanDOMString
&
135
getData()
const
;
136
137
// public interfaces not inherited from XalanComment...
138
139
void
140
setParent(
XalanSourceTreeElement
* theParent);
141
142
void
143
setParent(
XalanSourceTreeDocumentFragment
* theParent);
144
145
void
146
setPreviousSibling(
XalanSourceTreeComment
* thePreviousSibling);
147
148
void
149
setPreviousSibling(
XalanSourceTreeElement
* thePreviousSibling);
150
151
void
152
setPreviousSibling(
XalanSourceTreeProcessingInstruction
* thePreviousSibling);
153
154
void
155
setPreviousSibling(
XalanSourceTreeText
* thePreviousSibling);
156
157
void
158
appendSiblingNode(
XalanSourceTreeComment
* theSibling);
159
160
void
161
appendSiblingNode(
XalanSourceTreeElement
* theSibling);
162
163
void
164
appendSiblingNode(
XalanSourceTreeProcessingInstruction
* theSibling);
165
166
void
167
appendSiblingNode(
XalanSourceTreeText
* theSibling);
168
169
void
170
setIndex
(
IndexType
theIndex)
171
{
172
m_index = theIndex;
173
}
174
175
private
:
176
177
// Not implemented...
178
XalanSourceTreeComment
(
const
XalanSourceTreeComment
& theSource);
179
180
XalanSourceTreeComment
&
181
operator=(
const
XalanSourceTreeComment
& theSource);
182
183
bool
184
operator==
(
const
XalanSourceTreeComment
& theRHS)
const
;
185
186
187
// Data members...
188
const
XalanDOMString
& m_data;
189
190
XalanSourceTreeDocument
* m_ownerDocument;
191
192
XalanNode
* m_parentNode;
193
194
XalanNode
* m_previousSibling;
195
196
XalanNode
* m_nextSibling;
197
198
IndexType m_index;
199
200
static
const
XalanDOMString
& s_nameString;
201
};
202
203
204
205
}
206
207
208
209
#endif // !defined(XALANSOURCETREECOMMENT_HEADER_GUARD_1357924680)
xalanc::XalanSourceTreeDocumentFragment
Definition:
XalanSourceTreeDocumentFragment.hpp:49
xalanc::XalanComment
Definition:
XalanComment.hpp:32
XALAN_CPP_NAMESPACE
#define XALAN_CPP_NAMESPACE
Xalan-C++ namespace, including major and minor version.
Definition:
XalanVersion.hpp:76
xalanc::XalanNode
Definition:
XalanNode.hpp:38
xalanc::XalanNode::NodeType
NodeType
Definition:
XalanNode.hpp:47
XalanDOMString.hpp
XalanComment.hpp
xalanc::XalanDocument
Definition:
XalanDocument.hpp:36
xalanc::operator==
bool operator==(const XalanVector< Type > &theLHS, const XalanVector< Type > &theRHS)
Definition:
XalanVector.hpp:1118
xalanc::XalanNode::IndexType
unsigned long IndexType
Definition:
XalanNode.hpp:64
xalanc::XalanSourceTreeComment
Definition:
XalanSourceTreeComment.hpp:47
xalanc::XalanNodeList
Definition:
XalanNodeList.hpp:36
XalanSourceTreeDefinitions.hpp
xalanc::XalanSourceTreeComment::setIndex
void setIndex(IndexType theIndex)
Definition:
XalanSourceTreeComment.hpp:170
xalanc::XalanNamedNodeMap
Definition:
XalanNamedNodeMap.hpp:36
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::XalanSourceTreeDocument
Definition:
XalanSourceTreeDocument.hpp:78
xalanc::XalanSourceTreeProcessingInstruction
Definition:
XalanSourceTreeProcessingInstruction.hpp:47
Copyright © 1999-2020 The Apache Software Foundation. All Rights Reserved.
Generated on Sun May 31 2020 10:37:18 for Xalan-C++ API Reference by
1.8.17