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.base;
66
67 import org.jaxen.saxpath.XPathHandler;
68
69 class DefaultXPathHandler implements XPathHandler
70 {
71 static class Singleton
72 {
73 static final DefaultXPathHandler instance = new DefaultXPathHandler();
74 }
75
76 public static XPathHandler getInstance()
77 {
78 return Singleton.instance;
79 }
80
81 public void startXPath()
82 {
83 }
84
85 public void endXPath()
86 {
87 }
88
89 public void startPathExpr()
90 {
91 }
92
93 public void endPathExpr()
94 {
95 }
96
97 public void startAbsoluteLocationPath()
98 {
99 }
100
101 public void endAbsoluteLocationPath()
102 {
103 }
104
105 public void startRelativeLocationPath()
106 {
107 }
108
109 public void endRelativeLocationPath()
110 {
111 }
112
113 public void startNameStep(int axis,
114 String prefix,
115 String localName)
116 {
117 }
118 public void startTextNodeStep(int axis)
119 {
120 }
121
122 public void endTextNodeStep()
123 {
124 }
125
126 public void startCommentNodeStep(int axis)
127 {
128 }
129
130 public void endCommentNodeStep()
131 {
132 }
133
134 public void startAllNodeStep(int axis)
135 {
136 }
137
138 public void endAllNodeStep()
139 {
140 }
141
142 public void startProcessingInstructionNodeStep(int axis,
143 String name)
144 {
145 }
146
147 public void endProcessingInstructionNodeStep()
148 {
149 }
150
151 public void endNameStep()
152 {
153 }
154
155 public void startPredicate()
156 {
157 }
158
159 public void endPredicate()
160 {
161 }
162
163 public void startFilterExpr()
164 {
165 }
166
167 public void endFilterExpr()
168 {
169 }
170
171 public void startOrExpr()
172 {
173 }
174
175 public void endOrExpr(boolean create)
176 {
177 }
178
179 public void startAndExpr()
180 {
181 }
182
183 public void endAndExpr(boolean create)
184 {
185 }
186
187 public void startEqualityExpr()
188 {
189 }
190
191 public void endEqualityExpr(int operator)
192 {
193 }
194
195 public void startRelationalExpr()
196 {
197 }
198
199 public void endRelationalExpr(int operator)
200 {
201 }
202
203 public void startAdditiveExpr()
204 {
205 }
206
207 public void endAdditiveExpr(int operator)
208 {
209 }
210
211 public void startMultiplicativeExpr()
212 {
213 }
214
215 public void endMultiplicativeExpr(int operator)
216 {
217 }
218
219 public void startUnaryExpr()
220 {
221 }
222
223 public void endUnaryExpr(int operator)
224 {
225 }
226
227 public void startUnionExpr()
228 {
229 }
230
231 public void endUnionExpr(boolean create)
232 {
233 }
234
235 public void number(int number)
236 {
237 }
238
239 public void number(double number)
240 {
241 }
242
243 public void literal(String literal)
244 {
245 }
246
247 public void variableReference(String prefix,
248 String variableName)
249 {
250 }
251
252 public void startFunction(String prefix,
253 String functionName)
254 {
255 }
256
257 public void endFunction()
258 {
259 }
260 }