-
Notifications
You must be signed in to change notification settings - Fork 0
/
TVLListener.java
239 lines (238 loc) · 7.69 KB
/
TVLListener.java
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
// Generated from TVL.g4 by ANTLR 4.5.3
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link TVLParser}.
*/
public interface TVLListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link TVLParser#s}.
* @param ctx the parse tree
*/
void enterS(TVLParser.SContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#s}.
* @param ctx the parse tree
*/
void exitS(TVLParser.SContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#stringType}.
* @param ctx the parse tree
*/
void enterStringType(TVLParser.StringTypeContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#stringType}.
* @param ctx the parse tree
*/
void exitStringType(TVLParser.StringTypeContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#stringList}.
* @param ctx the parse tree
*/
void enterStringList(TVLParser.StringListContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#stringList}.
* @param ctx the parse tree
*/
void exitStringList(TVLParser.StringListContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#featureList}.
* @param ctx the parse tree
*/
void enterFeatureList(TVLParser.FeatureListContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#featureList}.
* @param ctx the parse tree
*/
void exitFeatureList(TVLParser.FeatureListContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#rootFeature}.
* @param ctx the parse tree
*/
void enterRootFeature(TVLParser.RootFeatureContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#rootFeature}.
* @param ctx the parse tree
*/
void exitRootFeature(TVLParser.RootFeatureContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#otherFeatures}.
* @param ctx the parse tree
*/
void enterOtherFeatures(TVLParser.OtherFeaturesContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#otherFeatures}.
* @param ctx the parse tree
*/
void exitOtherFeatures(TVLParser.OtherFeaturesContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#feature}.
* @param ctx the parse tree
*/
void enterFeature(TVLParser.FeatureContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#feature}.
* @param ctx the parse tree
*/
void exitFeature(TVLParser.FeatureContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#featureBody}.
* @param ctx the parse tree
*/
void enterFeatureBody(TVLParser.FeatureBodyContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#featureBody}.
* @param ctx the parse tree
*/
void exitFeatureBody(TVLParser.FeatureBodyContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#attributeList}.
* @param ctx the parse tree
*/
void enterAttributeList(TVLParser.AttributeListContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#attributeList}.
* @param ctx the parse tree
*/
void exitAttributeList(TVLParser.AttributeListContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#attribute}.
* @param ctx the parse tree
*/
void enterAttribute(TVLParser.AttributeContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#attribute}.
* @param ctx the parse tree
*/
void exitAttribute(TVLParser.AttributeContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#children}.
* @param ctx the parse tree
*/
void enterChildren(TVLParser.ChildrenContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#children}.
* @param ctx the parse tree
*/
void exitChildren(TVLParser.ChildrenContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#featureGroup}.
* @param ctx the parse tree
*/
void enterFeatureGroup(TVLParser.FeatureGroupContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#featureGroup}.
* @param ctx the parse tree
*/
void exitFeatureGroup(TVLParser.FeatureGroupContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#solitaryIDList}.
* @param ctx the parse tree
*/
void enterSolitaryIDList(TVLParser.SolitaryIDListContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#solitaryIDList}.
* @param ctx the parse tree
*/
void exitSolitaryIDList(TVLParser.SolitaryIDListContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#optional}.
* @param ctx the parse tree
*/
void enterOptional(TVLParser.OptionalContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#optional}.
* @param ctx the parse tree
*/
void exitOptional(TVLParser.OptionalContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#pp_parentInformation}.
* @param ctx the parse tree
*/
void enterPp_parentInformation(TVLParser.Pp_parentInformationContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#pp_parentInformation}.
* @param ctx the parse tree
*/
void exitPp_parentInformation(TVLParser.Pp_parentInformationContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#idList}.
* @param ctx the parse tree
*/
void enterIdList(TVLParser.IdListContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#idList}.
* @param ctx the parse tree
*/
void exitIdList(TVLParser.IdListContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#cardinality}.
* @param ctx the parse tree
*/
void enterCardinality(TVLParser.CardinalityContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#cardinality}.
* @param ctx the parse tree
*/
void exitCardinality(TVLParser.CardinalityContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#constraintList}.
* @param ctx the parse tree
*/
void enterConstraintList(TVLParser.ConstraintListContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#constraintList}.
* @param ctx the parse tree
*/
void exitConstraintList(TVLParser.ConstraintListContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#constraint}.
* @param ctx the parse tree
*/
void enterConstraint(TVLParser.ConstraintContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#constraint}.
* @param ctx the parse tree
*/
void exitConstraint(TVLParser.ConstraintContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#id}.
* @param ctx the parse tree
*/
void enterId(TVLParser.IdContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#id}.
* @param ctx the parse tree
*/
void exitId(TVLParser.IdContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#attrID}.
* @param ctx the parse tree
*/
void enterAttrID(TVLParser.AttrIDContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#attrID}.
* @param ctx the parse tree
*/
void exitAttrID(TVLParser.AttrIDContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#bool_literal}.
* @param ctx the parse tree
*/
void enterBool_literal(TVLParser.Bool_literalContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#bool_literal}.
* @param ctx the parse tree
*/
void exitBool_literal(TVLParser.Bool_literalContext ctx);
/**
* Enter a parse tree produced by {@link TVLParser#string_literal}.
* @param ctx the parse tree
*/
void enterString_literal(TVLParser.String_literalContext ctx);
/**
* Exit a parse tree produced by {@link TVLParser#string_literal}.
* @param ctx the parse tree
*/
void exitString_literal(TVLParser.String_literalContext ctx);
}