@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.
@@ -0,0 +1,74 @@
1
+ CREATE_SYMBOL=1
2
+ GIS_SYMBOL=2
3
+ ENTITY_SYMBOL=3
4
+ USING_SYMBOL=4
5
+ USE_SYMBOL=5
6
+ GENERATE_SYMBOL=6
7
+ IDENTIFIER_SYMBOL=7
8
+ RELATIONSHIP_SYMBOL=8
9
+ DISPLAYSTRING_SYMBOL=9
10
+ REQUIRED_SYMBOL=10
11
+ UNIQUE_SYMBOL=11
12
+ BIDIRECTIONAL_SYMBOL=12
13
+ MAPPEDBY_SYMBOL=13
14
+ LAYER_SYMBOL=14
15
+ TILE_SYMBOL=15
16
+ GEOJSON_SYMBOL=16
17
+ GEOMETRY_TYPE_SYMBOL=17
18
+ AS_SYMBOL=18
19
+ URL_SYMBOL=19
20
+ SLD_SYMBOL=20
21
+ EDITABLE_SYMBOL=21
22
+ FILL_COLOR_SYMBOL=22
23
+ STROKE_COLOR_SYMBOL=23
24
+ FILL_OPACITY_SYMBOL=24
25
+ STROKE_OPACITY_SYMBOL=25
26
+ STROKE_WIDTH_SYMBOL=26
27
+ WMS_SYMBOL=27
28
+ STYLE_SYMBOL=28
29
+ IS_BASE_LAYER_SYMBOL=29
30
+ HIDDEN_SYMBOL=30
31
+ SORTABLE_SYMBOL=31
32
+ MAP_SYMBOL=32
33
+ SET_SYMBOL=33
34
+ DEPLOYMENT_SYMBOL=34
35
+ URL_WMS_SYMBOL=35
36
+ LAYERNAME_SYMBOL=36
37
+ FORMAT_SYMBOL=37
38
+ CRS_SYMBOL=38
39
+ BBOX_CRS_SYMBOL=39
40
+ MINX_SYMBOL=40
41
+ MINY_SYMBOL=41
42
+ MAXX_SYMBOL=42
43
+ MAXY_SYMBOL=43
44
+ QUERYABLE_SYMBOL=44
45
+ ATTRIBUTION_SYMBOL=45
46
+ VERSION_SYMBOL=46
47
+ ZERO_ONE_SYMBOL=47
48
+ ONE_ONE_SYMBOL=48
49
+ ZERO_MANY_SYMBOL=49
50
+ ONE_MANY_SYMBOL=50
51
+ TYPE=51
52
+ POUND_SYMBOL=52
53
+ DOT_SYMBOL=53
54
+ OPAR_SYMBOL=54
55
+ CPAR_SYMBOL=55
56
+ COMMA_SYMBOL=56
57
+ SCOL_SYMBOL=57
58
+ HEX_COLOR=58
59
+ INT_NUMBER=59
60
+ FLOAT_NUMBER=60
61
+ COMMENT=61
62
+ WHITESPACE=62
63
+ IDENTIFIER=63
64
+ QUOTED_TEXT=64
65
+ '0..1'=47
66
+ '1..1'=48
67
+ '0..*'=49
68
+ '1..*'=50
69
+ '#'=52
70
+ '.'=53
71
+ '('=54
72
+ ')'=55
73
+ ','=56
74
+ ';'=57
@@ -0,0 +1,459 @@
1
+ // Generated from c:/Users/47852/Desktop/dev/GEMA/gisdsl/grammar/GISGrammar.g4 by ANTLR 4.13.1
2
+ import org.antlr.v4.runtime.tree.ParseTreeListener;
3
+
4
+ /**
5
+ * This interface defines a complete listener for a parse tree produced by
6
+ * {@link GISGrammarParser}.
7
+ */
8
+ public interface GISGrammarListener extends ParseTreeListener {
9
+ /**
10
+ * Enter a parse tree produced by {@link GISGrammarParser#parse}.
11
+ * @param ctx the parse tree
12
+ */
13
+ void enterParse(GISGrammarParser.ParseContext ctx);
14
+ /**
15
+ * Exit a parse tree produced by {@link GISGrammarParser#parse}.
16
+ * @param ctx the parse tree
17
+ */
18
+ void exitParse(GISGrammarParser.ParseContext ctx);
19
+ /**
20
+ * Enter a parse tree produced by {@link GISGrammarParser#sentence}.
21
+ * @param ctx the parse tree
22
+ */
23
+ void enterSentence(GISGrammarParser.SentenceContext ctx);
24
+ /**
25
+ * Exit a parse tree produced by {@link GISGrammarParser#sentence}.
26
+ * @param ctx the parse tree
27
+ */
28
+ void exitSentence(GISGrammarParser.SentenceContext ctx);
29
+ /**
30
+ * Enter a parse tree produced by {@link GISGrammarParser#createStatement}.
31
+ * @param ctx the parse tree
32
+ */
33
+ void enterCreateStatement(GISGrammarParser.CreateStatementContext ctx);
34
+ /**
35
+ * Exit a parse tree produced by {@link GISGrammarParser#createStatement}.
36
+ * @param ctx the parse tree
37
+ */
38
+ void exitCreateStatement(GISGrammarParser.CreateStatementContext ctx);
39
+ /**
40
+ * Enter a parse tree produced by {@link GISGrammarParser#createGIS}.
41
+ * @param ctx the parse tree
42
+ */
43
+ void enterCreateGIS(GISGrammarParser.CreateGISContext ctx);
44
+ /**
45
+ * Exit a parse tree produced by {@link GISGrammarParser#createGIS}.
46
+ * @param ctx the parse tree
47
+ */
48
+ void exitCreateGIS(GISGrammarParser.CreateGISContext ctx);
49
+ /**
50
+ * Enter a parse tree produced by {@link GISGrammarParser#createEntity}.
51
+ * @param ctx the parse tree
52
+ */
53
+ void enterCreateEntity(GISGrammarParser.CreateEntityContext ctx);
54
+ /**
55
+ * Exit a parse tree produced by {@link GISGrammarParser#createEntity}.
56
+ * @param ctx the parse tree
57
+ */
58
+ void exitCreateEntity(GISGrammarParser.CreateEntityContext ctx);
59
+ /**
60
+ * Enter a parse tree produced by {@link GISGrammarParser#createLayer}.
61
+ * @param ctx the parse tree
62
+ */
63
+ void enterCreateLayer(GISGrammarParser.CreateLayerContext ctx);
64
+ /**
65
+ * Exit a parse tree produced by {@link GISGrammarParser#createLayer}.
66
+ * @param ctx the parse tree
67
+ */
68
+ void exitCreateLayer(GISGrammarParser.CreateLayerContext ctx);
69
+ /**
70
+ * Enter a parse tree produced by {@link GISGrammarParser#createTileLayer}.
71
+ * @param ctx the parse tree
72
+ */
73
+ void enterCreateTileLayer(GISGrammarParser.CreateTileLayerContext ctx);
74
+ /**
75
+ * Exit a parse tree produced by {@link GISGrammarParser#createTileLayer}.
76
+ * @param ctx the parse tree
77
+ */
78
+ void exitCreateTileLayer(GISGrammarParser.CreateTileLayerContext ctx);
79
+ /**
80
+ * Enter a parse tree produced by {@link GISGrammarParser#createGeoJSONLayer}.
81
+ * @param ctx the parse tree
82
+ */
83
+ void enterCreateGeoJSONLayer(GISGrammarParser.CreateGeoJSONLayerContext ctx);
84
+ /**
85
+ * Exit a parse tree produced by {@link GISGrammarParser#createGeoJSONLayer}.
86
+ * @param ctx the parse tree
87
+ */
88
+ void exitCreateGeoJSONLayer(GISGrammarParser.CreateGeoJSONLayerContext ctx);
89
+ /**
90
+ * Enter a parse tree produced by {@link GISGrammarParser#sldCustomBody}.
91
+ * @param ctx the parse tree
92
+ */
93
+ void enterSldCustomBody(GISGrammarParser.SldCustomBodyContext ctx);
94
+ /**
95
+ * Exit a parse tree produced by {@link GISGrammarParser#sldCustomBody}.
96
+ * @param ctx the parse tree
97
+ */
98
+ void exitSldCustomBody(GISGrammarParser.SldCustomBodyContext ctx);
99
+ /**
100
+ * Enter a parse tree produced by {@link GISGrammarParser#createWmsStyle}.
101
+ * @param ctx the parse tree
102
+ */
103
+ void enterCreateWmsStyle(GISGrammarParser.CreateWmsStyleContext ctx);
104
+ /**
105
+ * Exit a parse tree produced by {@link GISGrammarParser#createWmsStyle}.
106
+ * @param ctx the parse tree
107
+ */
108
+ void exitCreateWmsStyle(GISGrammarParser.CreateWmsStyleContext ctx);
109
+ /**
110
+ * Enter a parse tree produced by {@link GISGrammarParser#createWmsLayer}.
111
+ * @param ctx the parse tree
112
+ */
113
+ void enterCreateWmsLayer(GISGrammarParser.CreateWmsLayerContext ctx);
114
+ /**
115
+ * Exit a parse tree produced by {@link GISGrammarParser#createWmsLayer}.
116
+ * @param ctx the parse tree
117
+ */
118
+ void exitCreateWmsLayer(GISGrammarParser.CreateWmsLayerContext ctx);
119
+ /**
120
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsSubLayer}.
121
+ * @param ctx the parse tree
122
+ */
123
+ void enterWmsSubLayer(GISGrammarParser.WmsSubLayerContext ctx);
124
+ /**
125
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsSubLayer}.
126
+ * @param ctx the parse tree
127
+ */
128
+ void exitWmsSubLayer(GISGrammarParser.WmsSubLayerContext ctx);
129
+ /**
130
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsUrl}.
131
+ * @param ctx the parse tree
132
+ */
133
+ void enterWmsUrl(GISGrammarParser.WmsUrlContext ctx);
134
+ /**
135
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsUrl}.
136
+ * @param ctx the parse tree
137
+ */
138
+ void exitWmsUrl(GISGrammarParser.WmsUrlContext ctx);
139
+ /**
140
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsLayerName}.
141
+ * @param ctx the parse tree
142
+ */
143
+ void enterWmsLayerName(GISGrammarParser.WmsLayerNameContext ctx);
144
+ /**
145
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsLayerName}.
146
+ * @param ctx the parse tree
147
+ */
148
+ void exitWmsLayerName(GISGrammarParser.WmsLayerNameContext ctx);
149
+ /**
150
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsFormatName}.
151
+ * @param ctx the parse tree
152
+ */
153
+ void enterWmsFormatName(GISGrammarParser.WmsFormatNameContext ctx);
154
+ /**
155
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsFormatName}.
156
+ * @param ctx the parse tree
157
+ */
158
+ void exitWmsFormatName(GISGrammarParser.WmsFormatNameContext ctx);
159
+ /**
160
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsCrs}.
161
+ * @param ctx the parse tree
162
+ */
163
+ void enterWmsCrs(GISGrammarParser.WmsCrsContext ctx);
164
+ /**
165
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsCrs}.
166
+ * @param ctx the parse tree
167
+ */
168
+ void exitWmsCrs(GISGrammarParser.WmsCrsContext ctx);
169
+ /**
170
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsBboxCrs}.
171
+ * @param ctx the parse tree
172
+ */
173
+ void enterWmsBboxCrs(GISGrammarParser.WmsBboxCrsContext ctx);
174
+ /**
175
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsBboxCrs}.
176
+ * @param ctx the parse tree
177
+ */
178
+ void exitWmsBboxCrs(GISGrammarParser.WmsBboxCrsContext ctx);
179
+ /**
180
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsMinX}.
181
+ * @param ctx the parse tree
182
+ */
183
+ void enterWmsMinX(GISGrammarParser.WmsMinXContext ctx);
184
+ /**
185
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsMinX}.
186
+ * @param ctx the parse tree
187
+ */
188
+ void exitWmsMinX(GISGrammarParser.WmsMinXContext ctx);
189
+ /**
190
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsMinY}.
191
+ * @param ctx the parse tree
192
+ */
193
+ void enterWmsMinY(GISGrammarParser.WmsMinYContext ctx);
194
+ /**
195
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsMinY}.
196
+ * @param ctx the parse tree
197
+ */
198
+ void exitWmsMinY(GISGrammarParser.WmsMinYContext ctx);
199
+ /**
200
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsMaxX}.
201
+ * @param ctx the parse tree
202
+ */
203
+ void enterWmsMaxX(GISGrammarParser.WmsMaxXContext ctx);
204
+ /**
205
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsMaxX}.
206
+ * @param ctx the parse tree
207
+ */
208
+ void exitWmsMaxX(GISGrammarParser.WmsMaxXContext ctx);
209
+ /**
210
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsMaxY}.
211
+ * @param ctx the parse tree
212
+ */
213
+ void enterWmsMaxY(GISGrammarParser.WmsMaxYContext ctx);
214
+ /**
215
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsMaxY}.
216
+ * @param ctx the parse tree
217
+ */
218
+ void exitWmsMaxY(GISGrammarParser.WmsMaxYContext ctx);
219
+ /**
220
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsBboxGroup}.
221
+ * @param ctx the parse tree
222
+ */
223
+ void enterWmsBboxGroup(GISGrammarParser.WmsBboxGroupContext ctx);
224
+ /**
225
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsBboxGroup}.
226
+ * @param ctx the parse tree
227
+ */
228
+ void exitWmsBboxGroup(GISGrammarParser.WmsBboxGroupContext ctx);
229
+ /**
230
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsStyles}.
231
+ * @param ctx the parse tree
232
+ */
233
+ void enterWmsStyles(GISGrammarParser.WmsStylesContext ctx);
234
+ /**
235
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsStyles}.
236
+ * @param ctx the parse tree
237
+ */
238
+ void exitWmsStyles(GISGrammarParser.WmsStylesContext ctx);
239
+ /**
240
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsQueryable}.
241
+ * @param ctx the parse tree
242
+ */
243
+ void enterWmsQueryable(GISGrammarParser.WmsQueryableContext ctx);
244
+ /**
245
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsQueryable}.
246
+ * @param ctx the parse tree
247
+ */
248
+ void exitWmsQueryable(GISGrammarParser.WmsQueryableContext ctx);
249
+ /**
250
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsAttribution}.
251
+ * @param ctx the parse tree
252
+ */
253
+ void enterWmsAttribution(GISGrammarParser.WmsAttributionContext ctx);
254
+ /**
255
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsAttribution}.
256
+ * @param ctx the parse tree
257
+ */
258
+ void exitWmsAttribution(GISGrammarParser.WmsAttributionContext ctx);
259
+ /**
260
+ * Enter a parse tree produced by {@link GISGrammarParser#wmsVersion}.
261
+ * @param ctx the parse tree
262
+ */
263
+ void enterWmsVersion(GISGrammarParser.WmsVersionContext ctx);
264
+ /**
265
+ * Exit a parse tree produced by {@link GISGrammarParser#wmsVersion}.
266
+ * @param ctx the parse tree
267
+ */
268
+ void exitWmsVersion(GISGrammarParser.WmsVersionContext ctx);
269
+ /**
270
+ * Enter a parse tree produced by {@link GISGrammarParser#createSortableMap}.
271
+ * @param ctx the parse tree
272
+ */
273
+ void enterCreateSortableMap(GISGrammarParser.CreateSortableMapContext ctx);
274
+ /**
275
+ * Exit a parse tree produced by {@link GISGrammarParser#createSortableMap}.
276
+ * @param ctx the parse tree
277
+ */
278
+ void exitCreateSortableMap(GISGrammarParser.CreateSortableMapContext ctx);
279
+ /**
280
+ * Enter a parse tree produced by {@link GISGrammarParser#createMap}.
281
+ * @param ctx the parse tree
282
+ */
283
+ void enterCreateMap(GISGrammarParser.CreateMapContext ctx);
284
+ /**
285
+ * Exit a parse tree produced by {@link GISGrammarParser#createMap}.
286
+ * @param ctx the parse tree
287
+ */
288
+ void exitCreateMap(GISGrammarParser.CreateMapContext ctx);
289
+ /**
290
+ * Enter a parse tree produced by {@link GISGrammarParser#mapLayer}.
291
+ * @param ctx the parse tree
292
+ */
293
+ void enterMapLayer(GISGrammarParser.MapLayerContext ctx);
294
+ /**
295
+ * Exit a parse tree produced by {@link GISGrammarParser#mapLayer}.
296
+ * @param ctx the parse tree
297
+ */
298
+ void exitMapLayer(GISGrammarParser.MapLayerContext ctx);
299
+ /**
300
+ * Enter a parse tree produced by {@link GISGrammarParser#useGIS}.
301
+ * @param ctx the parse tree
302
+ */
303
+ void enterUseGIS(GISGrammarParser.UseGISContext ctx);
304
+ /**
305
+ * Exit a parse tree produced by {@link GISGrammarParser#useGIS}.
306
+ * @param ctx the parse tree
307
+ */
308
+ void exitUseGIS(GISGrammarParser.UseGISContext ctx);
309
+ /**
310
+ * Enter a parse tree produced by {@link GISGrammarParser#generateGIS}.
311
+ * @param ctx the parse tree
312
+ */
313
+ void enterGenerateGIS(GISGrammarParser.GenerateGISContext ctx);
314
+ /**
315
+ * Exit a parse tree produced by {@link GISGrammarParser#generateGIS}.
316
+ * @param ctx the parse tree
317
+ */
318
+ void exitGenerateGIS(GISGrammarParser.GenerateGISContext ctx);
319
+ /**
320
+ * Enter a parse tree produced by {@link GISGrammarParser#setDeployment}.
321
+ * @param ctx the parse tree
322
+ */
323
+ void enterSetDeployment(GISGrammarParser.SetDeploymentContext ctx);
324
+ /**
325
+ * Exit a parse tree produced by {@link GISGrammarParser#setDeployment}.
326
+ * @param ctx the parse tree
327
+ */
328
+ void exitSetDeployment(GISGrammarParser.SetDeploymentContext ctx);
329
+ /**
330
+ * Enter a parse tree produced by {@link GISGrammarParser#deploymentProperty}.
331
+ * @param ctx the parse tree
332
+ */
333
+ void enterDeploymentProperty(GISGrammarParser.DeploymentPropertyContext ctx);
334
+ /**
335
+ * Exit a parse tree produced by {@link GISGrammarParser#deploymentProperty}.
336
+ * @param ctx the parse tree
337
+ */
338
+ void exitDeploymentProperty(GISGrammarParser.DeploymentPropertyContext ctx);
339
+ /**
340
+ * Enter a parse tree produced by {@link GISGrammarParser#property}.
341
+ * @param ctx the parse tree
342
+ */
343
+ void enterProperty(GISGrammarParser.PropertyContext ctx);
344
+ /**
345
+ * Exit a parse tree produced by {@link GISGrammarParser#property}.
346
+ * @param ctx the parse tree
347
+ */
348
+ void exitProperty(GISGrammarParser.PropertyContext ctx);
349
+ /**
350
+ * Enter a parse tree produced by {@link GISGrammarParser#propertyDefinition}.
351
+ * @param ctx the parse tree
352
+ */
353
+ void enterPropertyDefinition(GISGrammarParser.PropertyDefinitionContext ctx);
354
+ /**
355
+ * Exit a parse tree produced by {@link GISGrammarParser#propertyDefinition}.
356
+ * @param ctx the parse tree
357
+ */
358
+ void exitPropertyDefinition(GISGrammarParser.PropertyDefinitionContext ctx);
359
+ /**
360
+ * Enter a parse tree produced by {@link GISGrammarParser#relationshipDefinition}.
361
+ * @param ctx the parse tree
362
+ */
363
+ void enterRelationshipDefinition(GISGrammarParser.RelationshipDefinitionContext ctx);
364
+ /**
365
+ * Exit a parse tree produced by {@link GISGrammarParser#relationshipDefinition}.
366
+ * @param ctx the parse tree
367
+ */
368
+ void exitRelationshipDefinition(GISGrammarParser.RelationshipDefinitionContext ctx);
369
+ /**
370
+ * Enter a parse tree produced by {@link GISGrammarParser#mappedRelationshipDefinition}.
371
+ * @param ctx the parse tree
372
+ */
373
+ void enterMappedRelationshipDefinition(GISGrammarParser.MappedRelationshipDefinitionContext ctx);
374
+ /**
375
+ * Exit a parse tree produced by {@link GISGrammarParser#mappedRelationshipDefinition}.
376
+ * @param ctx the parse tree
377
+ */
378
+ void exitMappedRelationshipDefinition(GISGrammarParser.MappedRelationshipDefinitionContext ctx);
379
+ /**
380
+ * Enter a parse tree produced by {@link GISGrammarParser#ownedRelationshipDefinition}.
381
+ * @param ctx the parse tree
382
+ */
383
+ void enterOwnedRelationshipDefinition(GISGrammarParser.OwnedRelationshipDefinitionContext ctx);
384
+ /**
385
+ * Exit a parse tree produced by {@link GISGrammarParser#ownedRelationshipDefinition}.
386
+ * @param ctx the parse tree
387
+ */
388
+ void exitOwnedRelationshipDefinition(GISGrammarParser.OwnedRelationshipDefinitionContext ctx);
389
+ /**
390
+ * Enter a parse tree produced by {@link GISGrammarParser#cardinality}.
391
+ * @param ctx the parse tree
392
+ */
393
+ void enterCardinality(GISGrammarParser.CardinalityContext ctx);
394
+ /**
395
+ * Exit a parse tree produced by {@link GISGrammarParser#cardinality}.
396
+ * @param ctx the parse tree
397
+ */
398
+ void exitCardinality(GISGrammarParser.CardinalityContext ctx);
399
+ /**
400
+ * Enter a parse tree produced by {@link GISGrammarParser#srid}.
401
+ * @param ctx the parse tree
402
+ */
403
+ void enterSrid(GISGrammarParser.SridContext ctx);
404
+ /**
405
+ * Exit a parse tree produced by {@link GISGrammarParser#srid}.
406
+ * @param ctx the parse tree
407
+ */
408
+ void exitSrid(GISGrammarParser.SridContext ctx);
409
+ /**
410
+ * Enter a parse tree produced by {@link GISGrammarParser#identifier}.
411
+ * @param ctx the parse tree
412
+ */
413
+ void enterIdentifier(GISGrammarParser.IdentifierContext ctx);
414
+ /**
415
+ * Exit a parse tree produced by {@link GISGrammarParser#identifier}.
416
+ * @param ctx the parse tree
417
+ */
418
+ void exitIdentifier(GISGrammarParser.IdentifierContext ctx);
419
+ /**
420
+ * Enter a parse tree produced by {@link GISGrammarParser#text}.
421
+ * @param ctx the parse tree
422
+ */
423
+ void enterText(GISGrammarParser.TextContext ctx);
424
+ /**
425
+ * Exit a parse tree produced by {@link GISGrammarParser#text}.
426
+ * @param ctx the parse tree
427
+ */
428
+ void exitText(GISGrammarParser.TextContext ctx);
429
+ /**
430
+ * Enter a parse tree produced by {@link GISGrammarParser#hexColor}.
431
+ * @param ctx the parse tree
432
+ */
433
+ void enterHexColor(GISGrammarParser.HexColorContext ctx);
434
+ /**
435
+ * Exit a parse tree produced by {@link GISGrammarParser#hexColor}.
436
+ * @param ctx the parse tree
437
+ */
438
+ void exitHexColor(GISGrammarParser.HexColorContext ctx);
439
+ /**
440
+ * Enter a parse tree produced by {@link GISGrammarParser#floatNumber}.
441
+ * @param ctx the parse tree
442
+ */
443
+ void enterFloatNumber(GISGrammarParser.FloatNumberContext ctx);
444
+ /**
445
+ * Exit a parse tree produced by {@link GISGrammarParser#floatNumber}.
446
+ * @param ctx the parse tree
447
+ */
448
+ void exitFloatNumber(GISGrammarParser.FloatNumberContext ctx);
449
+ /**
450
+ * Enter a parse tree produced by {@link GISGrammarParser#intNumber}.
451
+ * @param ctx the parse tree
452
+ */
453
+ void enterIntNumber(GISGrammarParser.IntNumberContext ctx);
454
+ /**
455
+ * Exit a parse tree produced by {@link GISGrammarParser#intNumber}.
456
+ * @param ctx the parse tree
457
+ */
458
+ void exitIntNumber(GISGrammarParser.IntNumberContext ctx);
459
+ }