@lbdudc/gp-gis-dsl 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +7 -0
- package/grammar/.antlr/GISGrammar.interp +184 -0
- package/grammar/.antlr/GISGrammar.tokens +74 -0
- package/grammar/.antlr/GISGrammarBaseListener.java +579 -0
- package/grammar/.antlr/GISGrammarLexer.interp +244 -0
- package/grammar/.antlr/GISGrammarLexer.java +695 -0
- package/grammar/.antlr/GISGrammarLexer.tokens +74 -0
- package/grammar/.antlr/GISGrammarListener.java +459 -0
- package/grammar/.antlr/GISGrammarParser.java +2993 -0
- package/grammar/GISGrammar.g4 +315 -313
- package/package.json +2 -2
- package/parse-file.js +73 -0
- package/src/GISVisitor.js +440 -436
- package/src/lib/GISGrammar.interp +184 -182
- package/src/lib/GISGrammar.tokens +49 -48
- package/src/lib/GISGrammarLexer.interp +244 -241
- package/src/lib/GISGrammarLexer.js +325 -317
- package/src/lib/GISGrammarLexer.tokens +49 -48
- package/src/lib/GISGrammarListener.js +1 -1
- package/src/lib/GISGrammarParser.js +406 -369
- package/src/lib/GISGrammarVisitor.js +1 -1
- package/src/spl/WMSStyleCustom.js +24 -22
- package/test-examples.js +120 -0
- package/test-output/agriculture.json +430 -0
- package/test-output/basic.json +273 -0
- package/test-output/complete.json +1260 -0
- package/test-output/emergency.json +757 -0
- package/test-output/environmental.json +594 -0
- package/test-output/gis.json +254 -0
- package/test-output/tourism.json +707 -0
- package/test-output/transportation.json +489 -0
- package/test-output/utilities.json +623 -0
- package/test-output/wms.json +110 -0
|
@@ -0,0 +1,579 @@
|
|
|
1
|
+
// Generated from c:/Users/47852/Desktop/dev/GEMA/gisdsl/grammar/GISGrammar.g4 by ANTLR 4.13.1
|
|
2
|
+
|
|
3
|
+
import org.antlr.v4.runtime.ParserRuleContext;
|
|
4
|
+
import org.antlr.v4.runtime.tree.ErrorNode;
|
|
5
|
+
import org.antlr.v4.runtime.tree.TerminalNode;
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* This class provides an empty implementation of {@link GISGrammarListener},
|
|
9
|
+
* which can be extended to create a listener which only needs to handle a subset
|
|
10
|
+
* of the available methods.
|
|
11
|
+
*/
|
|
12
|
+
@SuppressWarnings("CheckReturnValue")
|
|
13
|
+
public class GISGrammarBaseListener implements GISGrammarListener {
|
|
14
|
+
/**
|
|
15
|
+
* {@inheritDoc}
|
|
16
|
+
*
|
|
17
|
+
* <p>The default implementation does nothing.</p>
|
|
18
|
+
*/
|
|
19
|
+
@Override public void enterParse(GISGrammarParser.ParseContext ctx) { }
|
|
20
|
+
/**
|
|
21
|
+
* {@inheritDoc}
|
|
22
|
+
*
|
|
23
|
+
* <p>The default implementation does nothing.</p>
|
|
24
|
+
*/
|
|
25
|
+
@Override public void exitParse(GISGrammarParser.ParseContext ctx) { }
|
|
26
|
+
/**
|
|
27
|
+
* {@inheritDoc}
|
|
28
|
+
*
|
|
29
|
+
* <p>The default implementation does nothing.</p>
|
|
30
|
+
*/
|
|
31
|
+
@Override public void enterSentence(GISGrammarParser.SentenceContext ctx) { }
|
|
32
|
+
/**
|
|
33
|
+
* {@inheritDoc}
|
|
34
|
+
*
|
|
35
|
+
* <p>The default implementation does nothing.</p>
|
|
36
|
+
*/
|
|
37
|
+
@Override public void exitSentence(GISGrammarParser.SentenceContext ctx) { }
|
|
38
|
+
/**
|
|
39
|
+
* {@inheritDoc}
|
|
40
|
+
*
|
|
41
|
+
* <p>The default implementation does nothing.</p>
|
|
42
|
+
*/
|
|
43
|
+
@Override public void enterCreateStatement(GISGrammarParser.CreateStatementContext ctx) { }
|
|
44
|
+
/**
|
|
45
|
+
* {@inheritDoc}
|
|
46
|
+
*
|
|
47
|
+
* <p>The default implementation does nothing.</p>
|
|
48
|
+
*/
|
|
49
|
+
@Override public void exitCreateStatement(GISGrammarParser.CreateStatementContext ctx) { }
|
|
50
|
+
/**
|
|
51
|
+
* {@inheritDoc}
|
|
52
|
+
*
|
|
53
|
+
* <p>The default implementation does nothing.</p>
|
|
54
|
+
*/
|
|
55
|
+
@Override public void enterCreateGIS(GISGrammarParser.CreateGISContext ctx) { }
|
|
56
|
+
/**
|
|
57
|
+
* {@inheritDoc}
|
|
58
|
+
*
|
|
59
|
+
* <p>The default implementation does nothing.</p>
|
|
60
|
+
*/
|
|
61
|
+
@Override public void exitCreateGIS(GISGrammarParser.CreateGISContext ctx) { }
|
|
62
|
+
/**
|
|
63
|
+
* {@inheritDoc}
|
|
64
|
+
*
|
|
65
|
+
* <p>The default implementation does nothing.</p>
|
|
66
|
+
*/
|
|
67
|
+
@Override public void enterCreateEntity(GISGrammarParser.CreateEntityContext ctx) { }
|
|
68
|
+
/**
|
|
69
|
+
* {@inheritDoc}
|
|
70
|
+
*
|
|
71
|
+
* <p>The default implementation does nothing.</p>
|
|
72
|
+
*/
|
|
73
|
+
@Override public void exitCreateEntity(GISGrammarParser.CreateEntityContext ctx) { }
|
|
74
|
+
/**
|
|
75
|
+
* {@inheritDoc}
|
|
76
|
+
*
|
|
77
|
+
* <p>The default implementation does nothing.</p>
|
|
78
|
+
*/
|
|
79
|
+
@Override public void enterCreateLayer(GISGrammarParser.CreateLayerContext ctx) { }
|
|
80
|
+
/**
|
|
81
|
+
* {@inheritDoc}
|
|
82
|
+
*
|
|
83
|
+
* <p>The default implementation does nothing.</p>
|
|
84
|
+
*/
|
|
85
|
+
@Override public void exitCreateLayer(GISGrammarParser.CreateLayerContext ctx) { }
|
|
86
|
+
/**
|
|
87
|
+
* {@inheritDoc}
|
|
88
|
+
*
|
|
89
|
+
* <p>The default implementation does nothing.</p>
|
|
90
|
+
*/
|
|
91
|
+
@Override public void enterCreateTileLayer(GISGrammarParser.CreateTileLayerContext ctx) { }
|
|
92
|
+
/**
|
|
93
|
+
* {@inheritDoc}
|
|
94
|
+
*
|
|
95
|
+
* <p>The default implementation does nothing.</p>
|
|
96
|
+
*/
|
|
97
|
+
@Override public void exitCreateTileLayer(GISGrammarParser.CreateTileLayerContext ctx) { }
|
|
98
|
+
/**
|
|
99
|
+
* {@inheritDoc}
|
|
100
|
+
*
|
|
101
|
+
* <p>The default implementation does nothing.</p>
|
|
102
|
+
*/
|
|
103
|
+
@Override public void enterCreateGeoJSONLayer(GISGrammarParser.CreateGeoJSONLayerContext ctx) { }
|
|
104
|
+
/**
|
|
105
|
+
* {@inheritDoc}
|
|
106
|
+
*
|
|
107
|
+
* <p>The default implementation does nothing.</p>
|
|
108
|
+
*/
|
|
109
|
+
@Override public void exitCreateGeoJSONLayer(GISGrammarParser.CreateGeoJSONLayerContext ctx) { }
|
|
110
|
+
/**
|
|
111
|
+
* {@inheritDoc}
|
|
112
|
+
*
|
|
113
|
+
* <p>The default implementation does nothing.</p>
|
|
114
|
+
*/
|
|
115
|
+
@Override public void enterSldCustomBody(GISGrammarParser.SldCustomBodyContext ctx) { }
|
|
116
|
+
/**
|
|
117
|
+
* {@inheritDoc}
|
|
118
|
+
*
|
|
119
|
+
* <p>The default implementation does nothing.</p>
|
|
120
|
+
*/
|
|
121
|
+
@Override public void exitSldCustomBody(GISGrammarParser.SldCustomBodyContext ctx) { }
|
|
122
|
+
/**
|
|
123
|
+
* {@inheritDoc}
|
|
124
|
+
*
|
|
125
|
+
* <p>The default implementation does nothing.</p>
|
|
126
|
+
*/
|
|
127
|
+
@Override public void enterCreateWmsStyle(GISGrammarParser.CreateWmsStyleContext ctx) { }
|
|
128
|
+
/**
|
|
129
|
+
* {@inheritDoc}
|
|
130
|
+
*
|
|
131
|
+
* <p>The default implementation does nothing.</p>
|
|
132
|
+
*/
|
|
133
|
+
@Override public void exitCreateWmsStyle(GISGrammarParser.CreateWmsStyleContext ctx) { }
|
|
134
|
+
/**
|
|
135
|
+
* {@inheritDoc}
|
|
136
|
+
*
|
|
137
|
+
* <p>The default implementation does nothing.</p>
|
|
138
|
+
*/
|
|
139
|
+
@Override public void enterCreateWmsLayer(GISGrammarParser.CreateWmsLayerContext ctx) { }
|
|
140
|
+
/**
|
|
141
|
+
* {@inheritDoc}
|
|
142
|
+
*
|
|
143
|
+
* <p>The default implementation does nothing.</p>
|
|
144
|
+
*/
|
|
145
|
+
@Override public void exitCreateWmsLayer(GISGrammarParser.CreateWmsLayerContext ctx) { }
|
|
146
|
+
/**
|
|
147
|
+
* {@inheritDoc}
|
|
148
|
+
*
|
|
149
|
+
* <p>The default implementation does nothing.</p>
|
|
150
|
+
*/
|
|
151
|
+
@Override public void enterWmsSubLayer(GISGrammarParser.WmsSubLayerContext ctx) { }
|
|
152
|
+
/**
|
|
153
|
+
* {@inheritDoc}
|
|
154
|
+
*
|
|
155
|
+
* <p>The default implementation does nothing.</p>
|
|
156
|
+
*/
|
|
157
|
+
@Override public void exitWmsSubLayer(GISGrammarParser.WmsSubLayerContext ctx) { }
|
|
158
|
+
/**
|
|
159
|
+
* {@inheritDoc}
|
|
160
|
+
*
|
|
161
|
+
* <p>The default implementation does nothing.</p>
|
|
162
|
+
*/
|
|
163
|
+
@Override public void enterWmsUrl(GISGrammarParser.WmsUrlContext ctx) { }
|
|
164
|
+
/**
|
|
165
|
+
* {@inheritDoc}
|
|
166
|
+
*
|
|
167
|
+
* <p>The default implementation does nothing.</p>
|
|
168
|
+
*/
|
|
169
|
+
@Override public void exitWmsUrl(GISGrammarParser.WmsUrlContext ctx) { }
|
|
170
|
+
/**
|
|
171
|
+
* {@inheritDoc}
|
|
172
|
+
*
|
|
173
|
+
* <p>The default implementation does nothing.</p>
|
|
174
|
+
*/
|
|
175
|
+
@Override public void enterWmsLayerName(GISGrammarParser.WmsLayerNameContext ctx) { }
|
|
176
|
+
/**
|
|
177
|
+
* {@inheritDoc}
|
|
178
|
+
*
|
|
179
|
+
* <p>The default implementation does nothing.</p>
|
|
180
|
+
*/
|
|
181
|
+
@Override public void exitWmsLayerName(GISGrammarParser.WmsLayerNameContext ctx) { }
|
|
182
|
+
/**
|
|
183
|
+
* {@inheritDoc}
|
|
184
|
+
*
|
|
185
|
+
* <p>The default implementation does nothing.</p>
|
|
186
|
+
*/
|
|
187
|
+
@Override public void enterWmsFormatName(GISGrammarParser.WmsFormatNameContext ctx) { }
|
|
188
|
+
/**
|
|
189
|
+
* {@inheritDoc}
|
|
190
|
+
*
|
|
191
|
+
* <p>The default implementation does nothing.</p>
|
|
192
|
+
*/
|
|
193
|
+
@Override public void exitWmsFormatName(GISGrammarParser.WmsFormatNameContext ctx) { }
|
|
194
|
+
/**
|
|
195
|
+
* {@inheritDoc}
|
|
196
|
+
*
|
|
197
|
+
* <p>The default implementation does nothing.</p>
|
|
198
|
+
*/
|
|
199
|
+
@Override public void enterWmsCrs(GISGrammarParser.WmsCrsContext ctx) { }
|
|
200
|
+
/**
|
|
201
|
+
* {@inheritDoc}
|
|
202
|
+
*
|
|
203
|
+
* <p>The default implementation does nothing.</p>
|
|
204
|
+
*/
|
|
205
|
+
@Override public void exitWmsCrs(GISGrammarParser.WmsCrsContext ctx) { }
|
|
206
|
+
/**
|
|
207
|
+
* {@inheritDoc}
|
|
208
|
+
*
|
|
209
|
+
* <p>The default implementation does nothing.</p>
|
|
210
|
+
*/
|
|
211
|
+
@Override public void enterWmsBboxCrs(GISGrammarParser.WmsBboxCrsContext ctx) { }
|
|
212
|
+
/**
|
|
213
|
+
* {@inheritDoc}
|
|
214
|
+
*
|
|
215
|
+
* <p>The default implementation does nothing.</p>
|
|
216
|
+
*/
|
|
217
|
+
@Override public void exitWmsBboxCrs(GISGrammarParser.WmsBboxCrsContext ctx) { }
|
|
218
|
+
/**
|
|
219
|
+
* {@inheritDoc}
|
|
220
|
+
*
|
|
221
|
+
* <p>The default implementation does nothing.</p>
|
|
222
|
+
*/
|
|
223
|
+
@Override public void enterWmsMinX(GISGrammarParser.WmsMinXContext ctx) { }
|
|
224
|
+
/**
|
|
225
|
+
* {@inheritDoc}
|
|
226
|
+
*
|
|
227
|
+
* <p>The default implementation does nothing.</p>
|
|
228
|
+
*/
|
|
229
|
+
@Override public void exitWmsMinX(GISGrammarParser.WmsMinXContext ctx) { }
|
|
230
|
+
/**
|
|
231
|
+
* {@inheritDoc}
|
|
232
|
+
*
|
|
233
|
+
* <p>The default implementation does nothing.</p>
|
|
234
|
+
*/
|
|
235
|
+
@Override public void enterWmsMinY(GISGrammarParser.WmsMinYContext ctx) { }
|
|
236
|
+
/**
|
|
237
|
+
* {@inheritDoc}
|
|
238
|
+
*
|
|
239
|
+
* <p>The default implementation does nothing.</p>
|
|
240
|
+
*/
|
|
241
|
+
@Override public void exitWmsMinY(GISGrammarParser.WmsMinYContext ctx) { }
|
|
242
|
+
/**
|
|
243
|
+
* {@inheritDoc}
|
|
244
|
+
*
|
|
245
|
+
* <p>The default implementation does nothing.</p>
|
|
246
|
+
*/
|
|
247
|
+
@Override public void enterWmsMaxX(GISGrammarParser.WmsMaxXContext ctx) { }
|
|
248
|
+
/**
|
|
249
|
+
* {@inheritDoc}
|
|
250
|
+
*
|
|
251
|
+
* <p>The default implementation does nothing.</p>
|
|
252
|
+
*/
|
|
253
|
+
@Override public void exitWmsMaxX(GISGrammarParser.WmsMaxXContext ctx) { }
|
|
254
|
+
/**
|
|
255
|
+
* {@inheritDoc}
|
|
256
|
+
*
|
|
257
|
+
* <p>The default implementation does nothing.</p>
|
|
258
|
+
*/
|
|
259
|
+
@Override public void enterWmsMaxY(GISGrammarParser.WmsMaxYContext ctx) { }
|
|
260
|
+
/**
|
|
261
|
+
* {@inheritDoc}
|
|
262
|
+
*
|
|
263
|
+
* <p>The default implementation does nothing.</p>
|
|
264
|
+
*/
|
|
265
|
+
@Override public void exitWmsMaxY(GISGrammarParser.WmsMaxYContext ctx) { }
|
|
266
|
+
/**
|
|
267
|
+
* {@inheritDoc}
|
|
268
|
+
*
|
|
269
|
+
* <p>The default implementation does nothing.</p>
|
|
270
|
+
*/
|
|
271
|
+
@Override public void enterWmsBboxGroup(GISGrammarParser.WmsBboxGroupContext ctx) { }
|
|
272
|
+
/**
|
|
273
|
+
* {@inheritDoc}
|
|
274
|
+
*
|
|
275
|
+
* <p>The default implementation does nothing.</p>
|
|
276
|
+
*/
|
|
277
|
+
@Override public void exitWmsBboxGroup(GISGrammarParser.WmsBboxGroupContext ctx) { }
|
|
278
|
+
/**
|
|
279
|
+
* {@inheritDoc}
|
|
280
|
+
*
|
|
281
|
+
* <p>The default implementation does nothing.</p>
|
|
282
|
+
*/
|
|
283
|
+
@Override public void enterWmsStyles(GISGrammarParser.WmsStylesContext ctx) { }
|
|
284
|
+
/**
|
|
285
|
+
* {@inheritDoc}
|
|
286
|
+
*
|
|
287
|
+
* <p>The default implementation does nothing.</p>
|
|
288
|
+
*/
|
|
289
|
+
@Override public void exitWmsStyles(GISGrammarParser.WmsStylesContext ctx) { }
|
|
290
|
+
/**
|
|
291
|
+
* {@inheritDoc}
|
|
292
|
+
*
|
|
293
|
+
* <p>The default implementation does nothing.</p>
|
|
294
|
+
*/
|
|
295
|
+
@Override public void enterWmsQueryable(GISGrammarParser.WmsQueryableContext ctx) { }
|
|
296
|
+
/**
|
|
297
|
+
* {@inheritDoc}
|
|
298
|
+
*
|
|
299
|
+
* <p>The default implementation does nothing.</p>
|
|
300
|
+
*/
|
|
301
|
+
@Override public void exitWmsQueryable(GISGrammarParser.WmsQueryableContext ctx) { }
|
|
302
|
+
/**
|
|
303
|
+
* {@inheritDoc}
|
|
304
|
+
*
|
|
305
|
+
* <p>The default implementation does nothing.</p>
|
|
306
|
+
*/
|
|
307
|
+
@Override public void enterWmsAttribution(GISGrammarParser.WmsAttributionContext ctx) { }
|
|
308
|
+
/**
|
|
309
|
+
* {@inheritDoc}
|
|
310
|
+
*
|
|
311
|
+
* <p>The default implementation does nothing.</p>
|
|
312
|
+
*/
|
|
313
|
+
@Override public void exitWmsAttribution(GISGrammarParser.WmsAttributionContext ctx) { }
|
|
314
|
+
/**
|
|
315
|
+
* {@inheritDoc}
|
|
316
|
+
*
|
|
317
|
+
* <p>The default implementation does nothing.</p>
|
|
318
|
+
*/
|
|
319
|
+
@Override public void enterWmsVersion(GISGrammarParser.WmsVersionContext ctx) { }
|
|
320
|
+
/**
|
|
321
|
+
* {@inheritDoc}
|
|
322
|
+
*
|
|
323
|
+
* <p>The default implementation does nothing.</p>
|
|
324
|
+
*/
|
|
325
|
+
@Override public void exitWmsVersion(GISGrammarParser.WmsVersionContext ctx) { }
|
|
326
|
+
/**
|
|
327
|
+
* {@inheritDoc}
|
|
328
|
+
*
|
|
329
|
+
* <p>The default implementation does nothing.</p>
|
|
330
|
+
*/
|
|
331
|
+
@Override public void enterCreateSortableMap(GISGrammarParser.CreateSortableMapContext ctx) { }
|
|
332
|
+
/**
|
|
333
|
+
* {@inheritDoc}
|
|
334
|
+
*
|
|
335
|
+
* <p>The default implementation does nothing.</p>
|
|
336
|
+
*/
|
|
337
|
+
@Override public void exitCreateSortableMap(GISGrammarParser.CreateSortableMapContext ctx) { }
|
|
338
|
+
/**
|
|
339
|
+
* {@inheritDoc}
|
|
340
|
+
*
|
|
341
|
+
* <p>The default implementation does nothing.</p>
|
|
342
|
+
*/
|
|
343
|
+
@Override public void enterCreateMap(GISGrammarParser.CreateMapContext ctx) { }
|
|
344
|
+
/**
|
|
345
|
+
* {@inheritDoc}
|
|
346
|
+
*
|
|
347
|
+
* <p>The default implementation does nothing.</p>
|
|
348
|
+
*/
|
|
349
|
+
@Override public void exitCreateMap(GISGrammarParser.CreateMapContext ctx) { }
|
|
350
|
+
/**
|
|
351
|
+
* {@inheritDoc}
|
|
352
|
+
*
|
|
353
|
+
* <p>The default implementation does nothing.</p>
|
|
354
|
+
*/
|
|
355
|
+
@Override public void enterMapLayer(GISGrammarParser.MapLayerContext ctx) { }
|
|
356
|
+
/**
|
|
357
|
+
* {@inheritDoc}
|
|
358
|
+
*
|
|
359
|
+
* <p>The default implementation does nothing.</p>
|
|
360
|
+
*/
|
|
361
|
+
@Override public void exitMapLayer(GISGrammarParser.MapLayerContext ctx) { }
|
|
362
|
+
/**
|
|
363
|
+
* {@inheritDoc}
|
|
364
|
+
*
|
|
365
|
+
* <p>The default implementation does nothing.</p>
|
|
366
|
+
*/
|
|
367
|
+
@Override public void enterUseGIS(GISGrammarParser.UseGISContext ctx) { }
|
|
368
|
+
/**
|
|
369
|
+
* {@inheritDoc}
|
|
370
|
+
*
|
|
371
|
+
* <p>The default implementation does nothing.</p>
|
|
372
|
+
*/
|
|
373
|
+
@Override public void exitUseGIS(GISGrammarParser.UseGISContext ctx) { }
|
|
374
|
+
/**
|
|
375
|
+
* {@inheritDoc}
|
|
376
|
+
*
|
|
377
|
+
* <p>The default implementation does nothing.</p>
|
|
378
|
+
*/
|
|
379
|
+
@Override public void enterGenerateGIS(GISGrammarParser.GenerateGISContext ctx) { }
|
|
380
|
+
/**
|
|
381
|
+
* {@inheritDoc}
|
|
382
|
+
*
|
|
383
|
+
* <p>The default implementation does nothing.</p>
|
|
384
|
+
*/
|
|
385
|
+
@Override public void exitGenerateGIS(GISGrammarParser.GenerateGISContext ctx) { }
|
|
386
|
+
/**
|
|
387
|
+
* {@inheritDoc}
|
|
388
|
+
*
|
|
389
|
+
* <p>The default implementation does nothing.</p>
|
|
390
|
+
*/
|
|
391
|
+
@Override public void enterSetDeployment(GISGrammarParser.SetDeploymentContext ctx) { }
|
|
392
|
+
/**
|
|
393
|
+
* {@inheritDoc}
|
|
394
|
+
*
|
|
395
|
+
* <p>The default implementation does nothing.</p>
|
|
396
|
+
*/
|
|
397
|
+
@Override public void exitSetDeployment(GISGrammarParser.SetDeploymentContext ctx) { }
|
|
398
|
+
/**
|
|
399
|
+
* {@inheritDoc}
|
|
400
|
+
*
|
|
401
|
+
* <p>The default implementation does nothing.</p>
|
|
402
|
+
*/
|
|
403
|
+
@Override public void enterDeploymentProperty(GISGrammarParser.DeploymentPropertyContext ctx) { }
|
|
404
|
+
/**
|
|
405
|
+
* {@inheritDoc}
|
|
406
|
+
*
|
|
407
|
+
* <p>The default implementation does nothing.</p>
|
|
408
|
+
*/
|
|
409
|
+
@Override public void exitDeploymentProperty(GISGrammarParser.DeploymentPropertyContext ctx) { }
|
|
410
|
+
/**
|
|
411
|
+
* {@inheritDoc}
|
|
412
|
+
*
|
|
413
|
+
* <p>The default implementation does nothing.</p>
|
|
414
|
+
*/
|
|
415
|
+
@Override public void enterProperty(GISGrammarParser.PropertyContext ctx) { }
|
|
416
|
+
/**
|
|
417
|
+
* {@inheritDoc}
|
|
418
|
+
*
|
|
419
|
+
* <p>The default implementation does nothing.</p>
|
|
420
|
+
*/
|
|
421
|
+
@Override public void exitProperty(GISGrammarParser.PropertyContext ctx) { }
|
|
422
|
+
/**
|
|
423
|
+
* {@inheritDoc}
|
|
424
|
+
*
|
|
425
|
+
* <p>The default implementation does nothing.</p>
|
|
426
|
+
*/
|
|
427
|
+
@Override public void enterPropertyDefinition(GISGrammarParser.PropertyDefinitionContext ctx) { }
|
|
428
|
+
/**
|
|
429
|
+
* {@inheritDoc}
|
|
430
|
+
*
|
|
431
|
+
* <p>The default implementation does nothing.</p>
|
|
432
|
+
*/
|
|
433
|
+
@Override public void exitPropertyDefinition(GISGrammarParser.PropertyDefinitionContext ctx) { }
|
|
434
|
+
/**
|
|
435
|
+
* {@inheritDoc}
|
|
436
|
+
*
|
|
437
|
+
* <p>The default implementation does nothing.</p>
|
|
438
|
+
*/
|
|
439
|
+
@Override public void enterRelationshipDefinition(GISGrammarParser.RelationshipDefinitionContext ctx) { }
|
|
440
|
+
/**
|
|
441
|
+
* {@inheritDoc}
|
|
442
|
+
*
|
|
443
|
+
* <p>The default implementation does nothing.</p>
|
|
444
|
+
*/
|
|
445
|
+
@Override public void exitRelationshipDefinition(GISGrammarParser.RelationshipDefinitionContext ctx) { }
|
|
446
|
+
/**
|
|
447
|
+
* {@inheritDoc}
|
|
448
|
+
*
|
|
449
|
+
* <p>The default implementation does nothing.</p>
|
|
450
|
+
*/
|
|
451
|
+
@Override public void enterMappedRelationshipDefinition(GISGrammarParser.MappedRelationshipDefinitionContext ctx) { }
|
|
452
|
+
/**
|
|
453
|
+
* {@inheritDoc}
|
|
454
|
+
*
|
|
455
|
+
* <p>The default implementation does nothing.</p>
|
|
456
|
+
*/
|
|
457
|
+
@Override public void exitMappedRelationshipDefinition(GISGrammarParser.MappedRelationshipDefinitionContext ctx) { }
|
|
458
|
+
/**
|
|
459
|
+
* {@inheritDoc}
|
|
460
|
+
*
|
|
461
|
+
* <p>The default implementation does nothing.</p>
|
|
462
|
+
*/
|
|
463
|
+
@Override public void enterOwnedRelationshipDefinition(GISGrammarParser.OwnedRelationshipDefinitionContext ctx) { }
|
|
464
|
+
/**
|
|
465
|
+
* {@inheritDoc}
|
|
466
|
+
*
|
|
467
|
+
* <p>The default implementation does nothing.</p>
|
|
468
|
+
*/
|
|
469
|
+
@Override public void exitOwnedRelationshipDefinition(GISGrammarParser.OwnedRelationshipDefinitionContext ctx) { }
|
|
470
|
+
/**
|
|
471
|
+
* {@inheritDoc}
|
|
472
|
+
*
|
|
473
|
+
* <p>The default implementation does nothing.</p>
|
|
474
|
+
*/
|
|
475
|
+
@Override public void enterCardinality(GISGrammarParser.CardinalityContext ctx) { }
|
|
476
|
+
/**
|
|
477
|
+
* {@inheritDoc}
|
|
478
|
+
*
|
|
479
|
+
* <p>The default implementation does nothing.</p>
|
|
480
|
+
*/
|
|
481
|
+
@Override public void exitCardinality(GISGrammarParser.CardinalityContext ctx) { }
|
|
482
|
+
/**
|
|
483
|
+
* {@inheritDoc}
|
|
484
|
+
*
|
|
485
|
+
* <p>The default implementation does nothing.</p>
|
|
486
|
+
*/
|
|
487
|
+
@Override public void enterSrid(GISGrammarParser.SridContext ctx) { }
|
|
488
|
+
/**
|
|
489
|
+
* {@inheritDoc}
|
|
490
|
+
*
|
|
491
|
+
* <p>The default implementation does nothing.</p>
|
|
492
|
+
*/
|
|
493
|
+
@Override public void exitSrid(GISGrammarParser.SridContext ctx) { }
|
|
494
|
+
/**
|
|
495
|
+
* {@inheritDoc}
|
|
496
|
+
*
|
|
497
|
+
* <p>The default implementation does nothing.</p>
|
|
498
|
+
*/
|
|
499
|
+
@Override public void enterIdentifier(GISGrammarParser.IdentifierContext ctx) { }
|
|
500
|
+
/**
|
|
501
|
+
* {@inheritDoc}
|
|
502
|
+
*
|
|
503
|
+
* <p>The default implementation does nothing.</p>
|
|
504
|
+
*/
|
|
505
|
+
@Override public void exitIdentifier(GISGrammarParser.IdentifierContext ctx) { }
|
|
506
|
+
/**
|
|
507
|
+
* {@inheritDoc}
|
|
508
|
+
*
|
|
509
|
+
* <p>The default implementation does nothing.</p>
|
|
510
|
+
*/
|
|
511
|
+
@Override public void enterText(GISGrammarParser.TextContext ctx) { }
|
|
512
|
+
/**
|
|
513
|
+
* {@inheritDoc}
|
|
514
|
+
*
|
|
515
|
+
* <p>The default implementation does nothing.</p>
|
|
516
|
+
*/
|
|
517
|
+
@Override public void exitText(GISGrammarParser.TextContext ctx) { }
|
|
518
|
+
/**
|
|
519
|
+
* {@inheritDoc}
|
|
520
|
+
*
|
|
521
|
+
* <p>The default implementation does nothing.</p>
|
|
522
|
+
*/
|
|
523
|
+
@Override public void enterHexColor(GISGrammarParser.HexColorContext ctx) { }
|
|
524
|
+
/**
|
|
525
|
+
* {@inheritDoc}
|
|
526
|
+
*
|
|
527
|
+
* <p>The default implementation does nothing.</p>
|
|
528
|
+
*/
|
|
529
|
+
@Override public void exitHexColor(GISGrammarParser.HexColorContext ctx) { }
|
|
530
|
+
/**
|
|
531
|
+
* {@inheritDoc}
|
|
532
|
+
*
|
|
533
|
+
* <p>The default implementation does nothing.</p>
|
|
534
|
+
*/
|
|
535
|
+
@Override public void enterFloatNumber(GISGrammarParser.FloatNumberContext ctx) { }
|
|
536
|
+
/**
|
|
537
|
+
* {@inheritDoc}
|
|
538
|
+
*
|
|
539
|
+
* <p>The default implementation does nothing.</p>
|
|
540
|
+
*/
|
|
541
|
+
@Override public void exitFloatNumber(GISGrammarParser.FloatNumberContext ctx) { }
|
|
542
|
+
/**
|
|
543
|
+
* {@inheritDoc}
|
|
544
|
+
*
|
|
545
|
+
* <p>The default implementation does nothing.</p>
|
|
546
|
+
*/
|
|
547
|
+
@Override public void enterIntNumber(GISGrammarParser.IntNumberContext ctx) { }
|
|
548
|
+
/**
|
|
549
|
+
* {@inheritDoc}
|
|
550
|
+
*
|
|
551
|
+
* <p>The default implementation does nothing.</p>
|
|
552
|
+
*/
|
|
553
|
+
@Override public void exitIntNumber(GISGrammarParser.IntNumberContext ctx) { }
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* {@inheritDoc}
|
|
557
|
+
*
|
|
558
|
+
* <p>The default implementation does nothing.</p>
|
|
559
|
+
*/
|
|
560
|
+
@Override public void enterEveryRule(ParserRuleContext ctx) { }
|
|
561
|
+
/**
|
|
562
|
+
* {@inheritDoc}
|
|
563
|
+
*
|
|
564
|
+
* <p>The default implementation does nothing.</p>
|
|
565
|
+
*/
|
|
566
|
+
@Override public void exitEveryRule(ParserRuleContext ctx) { }
|
|
567
|
+
/**
|
|
568
|
+
* {@inheritDoc}
|
|
569
|
+
*
|
|
570
|
+
* <p>The default implementation does nothing.</p>
|
|
571
|
+
*/
|
|
572
|
+
@Override public void visitTerminal(TerminalNode node) { }
|
|
573
|
+
/**
|
|
574
|
+
* {@inheritDoc}
|
|
575
|
+
*
|
|
576
|
+
* <p>The default implementation does nothing.</p>
|
|
577
|
+
*/
|
|
578
|
+
@Override public void visitErrorNode(ErrorNode node) { }
|
|
579
|
+
}
|