Xalan-C++ API Documentation

The Xalan C++ XSLT Processor Version 1.10

GenerateEvent.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 1999-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #if !defined(XALAN_GenerateEvent_HEADER_GUARD)
17 #define XALAN_GenerateEvent_HEADER_GUARD
18 
19 
20 
21 // Base include file. Must be first.
23 
24 
25 
27 
28 
29 
30 XALAN_DECLARE_XERCES_CLASS(AttributeList)
31 
32 
33 
34 XALAN_CPP_NAMESPACE_BEGIN
35 
36 
37 
38 typedef XERCES_CPP_NAMESPACE_QUALIFIER AttributeList AttributeListType;
39 
40 
41 
51 {
52 public:
53 
54  enum EventType
55  {
60  EVENTTYPE_STARTDOCUMENT = 1,
61 
65  EVENTTYPE_ENDDOCUMENT = 2,
66 
70  EVENTTYPE_STARTELEMENT = 3,
71 
75  EVENTTYPE_ENDELEMENT = 4,
76 
80  EVENTTYPE_CHARACTERS = 5,
81 
85  EVENTTYPE_IGNORABLEWHITESPACE = 6,
86 
90  EVENTTYPE_PI = 7,
91 
95  EVENTTYPE_COMMENT = 8,
96 
100  EVENTTYPE_ENTITYREF = 9,
101 
105  EVENTTYPE_CDATA = 10
106  };
107 
108 
114  GenerateEvent(EventType eventType,
115  MemoryManagerType& theManager);
116 
124  GenerateEvent(
125  EventType eventType,
126  MemoryManagerType& theManager,
127  const XalanDOMChar* name,
128  AttributeListType* atts);
129 
137  GenerateEvent(
138  EventType eventType,
139  MemoryManagerType& theManager,
140  const XalanDOMString& name,
141  const AttributeListType* atts = 0);
142 
151  GenerateEvent(
152  EventType eventType,
153  MemoryManagerType& theManager,
154  const XalanDOMChar* ch,
157 
165  GenerateEvent(
166  EventType eventType,
167  MemoryManagerType& theManager,
168  const XalanDOMChar* name,
169  const XalanDOMChar* data);
170 
178  GenerateEvent(
179  EventType eventType,
180  MemoryManagerType& theManager,
181  const XalanDOMChar* data);
182 
188 
193 
198 
203 
208 
213 
217  const AttributeListType* m_pAtts;
218 private:
219  // not imlplemented
220  GenerateEvent();
221  GenerateEvent(const GenerateEvent&);
222 };
223 
224 
225 
226 XALAN_CPP_NAMESPACE_END
227 
228 
229 
230 #endif //XALAN_GenerateEvent_HEADER_GUARD

Interpreting class diagrams

Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.

dot

Xalan-C++ XSLT Processor Version 1.10
Copyright © 1999-2004 The Apache Software Foundation. All Rights Reserved.

Apache Logo