1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65 package org.jaxen.saxpath.helpers;
66
67 import org.jaxen.saxpath.XPathHandler;
68
69 /***
70
71 Default base class for SAXPath event handlers.
72
73 This class is available as a convenience base class for SAXPath
74 applications: it provides a default implementation for all of the
75 callbacks in the core SAXPath handler class, {@link
76 org.jaxen.saxpath.XPathHandler}
77
78 Application writers can extend this class when they need to
79 implement only part of an interface; parser writers can instantiate
80 this class to provide default handlers when the application has not
81 supplied its own. */
82
83 public class DefaultXPathHandler implements XPathHandler
84 {
85 public DefaultXPathHandler()
86 {
87 }
88
89 public void startXPath() throws org.jaxen.saxpath.SAXPathException
90 {
91 }
92
93 public void endXPath() throws org.jaxen.saxpath.SAXPathException
94 {
95 }
96
97 public void startPathExpr() throws org.jaxen.saxpath.SAXPathException
98 {
99 }
100
101 public void endPathExpr() throws org.jaxen.saxpath.SAXPathException
102 {
103 }
104
105 public void startAbsoluteLocationPath() throws org.jaxen.saxpath.SAXPathException
106 {
107 }
108
109 public void endAbsoluteLocationPath() throws org.jaxen.saxpath.SAXPathException
110 {
111 }
112
113 public void startRelativeLocationPath() throws org.jaxen.saxpath.SAXPathException
114 {
115 }
116
117 public void endRelativeLocationPath() throws org.jaxen.saxpath.SAXPathException
118 {
119 }
120
121 public void startNameStep(int axis,
122 String prefix,
123 String localName) throws org.jaxen.saxpath.SAXPathException
124 {
125 }
126
127 public void endNameStep() throws org.jaxen.saxpath.SAXPathException
128 {
129 }
130
131 public void startTextNodeStep(int axis) throws org.jaxen.saxpath.SAXPathException
132 {
133 }
134 public void endTextNodeStep() throws org.jaxen.saxpath.SAXPathException
135 {
136 }
137
138 public void startCommentNodeStep(int axis) throws org.jaxen.saxpath.SAXPathException
139 {
140 }
141
142 public void endCommentNodeStep() throws org.jaxen.saxpath.SAXPathException
143 {
144 }
145
146 public void startAllNodeStep(int axis) throws org.jaxen.saxpath.SAXPathException
147 {
148 }
149
150 public void endAllNodeStep() throws org.jaxen.saxpath.SAXPathException
151 {
152 }
153
154 public void startProcessingInstructionNodeStep(int axis,
155 String name) throws org.jaxen.saxpath.SAXPathException
156 {
157 }
158 public void endProcessingInstructionNodeStep() throws org.jaxen.saxpath.SAXPathException
159 {
160 }
161
162 public void startPredicate() throws org.jaxen.saxpath.SAXPathException
163 {
164 }
165
166 public void endPredicate() throws org.jaxen.saxpath.SAXPathException
167 {
168 }
169
170 public void startFilterExpr() throws org.jaxen.saxpath.SAXPathException
171 {
172 }
173
174 public void endFilterExpr() throws org.jaxen.saxpath.SAXPathException
175 {
176 }
177
178 public void startOrExpr() throws org.jaxen.saxpath.SAXPathException
179 {
180 }
181
182 public void endOrExpr(boolean create) throws org.jaxen.saxpath.SAXPathException
183 {
184 }
185
186 public void startAndExpr() throws org.jaxen.saxpath.SAXPathException
187 {
188 }
189
190 public void endAndExpr(boolean create) throws org.jaxen.saxpath.SAXPathException
191 {
192 }
193
194 public void startEqualityExpr() throws org.jaxen.saxpath.SAXPathException
195 {
196 }
197
198 public void endEqualityExpr(int operator) throws org.jaxen.saxpath.SAXPathException
199 {
200 }
201
202 public void startRelationalExpr() throws org.jaxen.saxpath.SAXPathException
203 {
204 }
205
206 public void endRelationalExpr(int operator) throws org.jaxen.saxpath.SAXPathException
207 {
208 }
209
210 public void startAdditiveExpr() throws org.jaxen.saxpath.SAXPathException
211 {
212 }
213
214 public void endAdditiveExpr(int operator) throws org.jaxen.saxpath.SAXPathException
215 {
216 }
217
218 public void startMultiplicativeExpr() throws org.jaxen.saxpath.SAXPathException
219 {
220 }
221
222 public void endMultiplicativeExpr(int operator) throws org.jaxen.saxpath.SAXPathException
223 {
224 }
225
226 public void startUnaryExpr() throws org.jaxen.saxpath.SAXPathException
227 {
228 }
229
230 public void endUnaryExpr(int operator) throws org.jaxen.saxpath.SAXPathException
231 {
232 }
233
234 public void startUnionExpr() throws org.jaxen.saxpath.SAXPathException
235 {
236 }
237
238 public void endUnionExpr(boolean create) throws org.jaxen.saxpath.SAXPathException
239 {
240 }
241
242 public void number(int number) throws org.jaxen.saxpath.SAXPathException
243 {
244 }
245
246 public void number(double number) throws org.jaxen.saxpath.SAXPathException
247 {
248 }
249
250 public void literal(String literal) throws org.jaxen.saxpath.SAXPathException
251 {
252 }
253
254 public void variableReference(String prefix,
255 String variableName) throws org.jaxen.saxpath.SAXPathException
256 {
257 }
258
259 public void startFunction(String prefix,
260 String functionName) throws org.jaxen.saxpath.SAXPathException
261 {
262 }
263
264 public void endFunction() throws org.jaxen.saxpath.SAXPathException
265 {
266 }
267
268 }