blob: 75f53963688679fdabb63ac0356b5f5932300741 [file] [log] [blame]
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301/*
2 * Copyright 2016 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.yangutils.parser.impl;
18
Vinod Kumar S71cba682016-02-25 15:52:16 +053019import java.util.Stack;
20
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +053021import org.antlr.v4.runtime.ParserRuleContext;
22import org.antlr.v4.runtime.tree.ErrorNode;
23import org.antlr.v4.runtime.tree.TerminalNode;
24import org.onosproject.yangutils.datamodel.YangNode;
25import org.onosproject.yangutils.parser.Parsable;
26import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangListener;
27import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Vidyashree Rama25bf4d02016-03-29 14:37:02 +053028import org.onosproject.yangutils.parser.impl.listeners.AugmentListener;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053029import org.onosproject.yangutils.parser.impl.listeners.BaseFileListener;
30import org.onosproject.yangutils.parser.impl.listeners.BelongsToListener;
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +053031import org.onosproject.yangutils.parser.impl.listeners.BitListener;
32import org.onosproject.yangutils.parser.impl.listeners.BitsListener;
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053033import org.onosproject.yangutils.parser.impl.listeners.CaseListener;
34import org.onosproject.yangutils.parser.impl.listeners.ChoiceListener;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053035import org.onosproject.yangutils.parser.impl.listeners.ConfigListener;
36import org.onosproject.yangutils.parser.impl.listeners.ContactListener;
37import org.onosproject.yangutils.parser.impl.listeners.ContainerListener;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053038import org.onosproject.yangutils.parser.impl.listeners.DefaultListener;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053039import org.onosproject.yangutils.parser.impl.listeners.DescriptionListener;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053040import org.onosproject.yangutils.parser.impl.listeners.EnumListener;
41import org.onosproject.yangutils.parser.impl.listeners.EnumerationListener;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053042import org.onosproject.yangutils.parser.impl.listeners.GroupingListener;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053043import org.onosproject.yangutils.parser.impl.listeners.ImportListener;
44import org.onosproject.yangutils.parser.impl.listeners.IncludeListener;
Vidyashree Rama6a72b792016-03-29 12:00:42 +053045import org.onosproject.yangutils.parser.impl.listeners.InputListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053046import org.onosproject.yangutils.parser.impl.listeners.KeyListener;
47import org.onosproject.yangutils.parser.impl.listeners.LeafListListener;
48import org.onosproject.yangutils.parser.impl.listeners.LeafListener;
49import org.onosproject.yangutils.parser.impl.listeners.ListListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053050import org.onosproject.yangutils.parser.impl.listeners.MandatoryListener;
51import org.onosproject.yangutils.parser.impl.listeners.MaxElementsListener;
52import org.onosproject.yangutils.parser.impl.listeners.MinElementsListener;
53import org.onosproject.yangutils.parser.impl.listeners.ModuleListener;
Vidyashree Rama506cbe12016-03-28 11:59:27 +053054import org.onosproject.yangutils.parser.impl.listeners.NotificationListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053055import org.onosproject.yangutils.parser.impl.listeners.NamespaceListener;
56import org.onosproject.yangutils.parser.impl.listeners.OrganizationListener;
Vidyashree Rama6a72b792016-03-29 12:00:42 +053057import org.onosproject.yangutils.parser.impl.listeners.OutputListener;
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +053058import org.onosproject.yangutils.parser.impl.listeners.PositionListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053059import org.onosproject.yangutils.parser.impl.listeners.PrefixListener;
60import org.onosproject.yangutils.parser.impl.listeners.PresenceListener;
61import org.onosproject.yangutils.parser.impl.listeners.ReferenceListener;
62import org.onosproject.yangutils.parser.impl.listeners.RevisionDateListener;
63import org.onosproject.yangutils.parser.impl.listeners.RevisionListener;
Vidyashree Rama6a72b792016-03-29 12:00:42 +053064import org.onosproject.yangutils.parser.impl.listeners.RpcListener;
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053065import org.onosproject.yangutils.parser.impl.listeners.ShortCaseListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053066import org.onosproject.yangutils.parser.impl.listeners.StatusListener;
67import org.onosproject.yangutils.parser.impl.listeners.SubModuleListener;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053068import org.onosproject.yangutils.parser.impl.listeners.TypeDefListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053069import org.onosproject.yangutils.parser.impl.listeners.TypeListener;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053070import org.onosproject.yangutils.parser.impl.listeners.UnionListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053071import org.onosproject.yangutils.parser.impl.listeners.UnitsListener;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053072import org.onosproject.yangutils.parser.impl.listeners.UsesListener;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053073import org.onosproject.yangutils.parser.impl.listeners.ValueListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053074import org.onosproject.yangutils.parser.impl.listeners.VersionListener;
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +053075
76/**
77 * ANTLR generates a parse-tree listener interface that responds to events
78 * triggered by the built-in tree walker. The methods in listener are just
79 * callbacks. This class implements listener interface and generates the
80 * corresponding data model tree.
81 */
82public class TreeWalkListener implements GeneratedYangListener {
83
84 // List of parsable node entries maintained in stack
85 private Stack<Parsable> parsedDataStack = new Stack<>();
86
87 // Parse tree root node
88 private YangNode rootNode;
89
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +053090 /**
91 * Returns stack of parsable data.
92 *
93 * @return stack of parsable data
94 */
95 public Stack<Parsable> getParsedDataStack() {
96 return parsedDataStack;
97 }
98
99 /**
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530100 * Returns root node.
101 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530102 * @return rootNode of data model tree
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530103 */
104 public YangNode getRootNode() {
105 return rootNode;
106 }
107
108 /**
109 * Set parsed data stack.
110 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530111 * @param parsedDataStack stack of parsable data objects
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530112 */
113 public void setParsedDataStack(Stack<Parsable> parsedDataStack) {
114 this.parsedDataStack = parsedDataStack;
115 }
116
117 /**
118 * Set root node.
119 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530120 * @param rootNode root node of data model tree
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530121 */
122 public void setRootNode(YangNode rootNode) {
123 this.rootNode = rootNode;
124 }
125
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530126 @Override
127 public void enterYangfile(GeneratedYangParser.YangfileContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530128 BaseFileListener.processYangFileEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530129 }
130
131 @Override
132 public void exitYangfile(GeneratedYangParser.YangfileContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530133 BaseFileListener.processYangFileExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530134 }
135
136 @Override
137 public void enterModuleStatement(GeneratedYangParser.ModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530138 ModuleListener.processModuleEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530139 }
140
141 @Override
142 public void exitModuleStatement(GeneratedYangParser.ModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530143 ModuleListener.processModuleExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530144 }
145
146 @Override
147 public void enterModuleBody(GeneratedYangParser.ModuleBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530148 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530149 }
150
151 @Override
152 public void exitModuleBody(GeneratedYangParser.ModuleBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530153 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530154 }
155
156 @Override
157 public void enterModuleHeaderStatement(GeneratedYangParser.ModuleHeaderStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530158 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530159 }
160
161 @Override
162 public void exitModuleHeaderStatement(GeneratedYangParser.ModuleHeaderStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530163 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530164 }
165
166 @Override
167 public void enterLinkageStatements(GeneratedYangParser.LinkageStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530168 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530169 }
170
171 @Override
172 public void exitLinkageStatements(GeneratedYangParser.LinkageStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530173 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530174 }
175
176 @Override
177 public void enterMetaStatements(GeneratedYangParser.MetaStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530178 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530179 }
180
181 @Override
182 public void exitMetaStatements(GeneratedYangParser.MetaStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530183 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530184 }
185
186 @Override
187 public void enterRevisionStatements(GeneratedYangParser.RevisionStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530188 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530189 }
190
191 @Override
192 public void exitRevisionStatements(GeneratedYangParser.RevisionStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530193 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530194 }
195
196 @Override
197 public void enterBodyStatements(GeneratedYangParser.BodyStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530198 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530199 }
200
201 @Override
202 public void exitBodyStatements(GeneratedYangParser.BodyStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530203 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530204 }
205
206 @Override
207 public void enterYangVersionStatement(GeneratedYangParser.YangVersionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530208 VersionListener.processVersionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530209 }
210
211 @Override
212 public void exitYangVersionStatement(GeneratedYangParser.YangVersionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530213 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530214 }
215
216 @Override
217 public void enterNamespaceStatement(GeneratedYangParser.NamespaceStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530218 NamespaceListener.processNamespaceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530219 }
220
221 @Override
222 public void exitNamespaceStatement(GeneratedYangParser.NamespaceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530223 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530224 }
225
226 @Override
227 public void enterPrefixStatement(GeneratedYangParser.PrefixStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530228 PrefixListener.processPrefixEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530229 }
230
231 @Override
232 public void exitPrefixStatement(GeneratedYangParser.PrefixStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530233 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530234 }
235
236 @Override
237 public void enterImportStatement(GeneratedYangParser.ImportStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530238 ImportListener.processImportEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530239 }
240
241 @Override
242 public void exitImportStatement(GeneratedYangParser.ImportStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530243 ImportListener.processImportExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530244 }
245
246 @Override
247 public void enterImportStatementBody(GeneratedYangParser.ImportStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530248 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530249 }
250
251 @Override
252 public void exitImportStatementBody(GeneratedYangParser.ImportStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530253 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530254 }
255
256 @Override
257 public void enterRevisionDateStatement(GeneratedYangParser.RevisionDateStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530258 RevisionDateListener.processRevisionDateEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530259 }
260
261 @Override
262 public void exitRevisionDateStatement(GeneratedYangParser.RevisionDateStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530263 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530264 }
265
266 @Override
267 public void enterIncludeStatement(GeneratedYangParser.IncludeStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530268 IncludeListener.processIncludeEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530269 }
270
271 @Override
272 public void exitIncludeStatement(GeneratedYangParser.IncludeStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530273 IncludeListener.processIncludeExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530274 }
275
276 @Override
277 public void enterOrganizationStatement(GeneratedYangParser.OrganizationStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530278 OrganizationListener.processOrganizationEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530279 }
280
281 @Override
282 public void exitOrganizationStatement(GeneratedYangParser.OrganizationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530283 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530284 }
285
286 @Override
287 public void enterContactStatement(GeneratedYangParser.ContactStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530288 ContactListener.processContactEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530289 }
290
291 @Override
292 public void exitContactStatement(GeneratedYangParser.ContactStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530293 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530294 }
295
296 @Override
297 public void enterDescriptionStatement(GeneratedYangParser.DescriptionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530298 DescriptionListener.processDescriptionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530299 }
300
301 @Override
302 public void exitDescriptionStatement(GeneratedYangParser.DescriptionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530303 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530304 }
305
306 @Override
307 public void enterReferenceStatement(GeneratedYangParser.ReferenceStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530308 ReferenceListener.processReferenceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530309 }
310
311 @Override
312 public void exitReferenceStatement(GeneratedYangParser.ReferenceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530313 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530314 }
315
316 @Override
317 public void enterRevisionStatement(GeneratedYangParser.RevisionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530318 RevisionListener.processRevisionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530319 }
320
321 @Override
322 public void exitRevisionStatement(GeneratedYangParser.RevisionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530323 RevisionListener.processRevisionExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530324 }
325
326 @Override
327 public void enterRevisionStatementBody(GeneratedYangParser.RevisionStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530328 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530329 }
330
331 @Override
332 public void exitRevisionStatementBody(GeneratedYangParser.RevisionStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530333 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530334 }
335
336 @Override
337 public void enterSubModuleStatement(GeneratedYangParser.SubModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530338 SubModuleListener.processSubModuleEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530339 }
340
341 @Override
342 public void exitSubModuleStatement(GeneratedYangParser.SubModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530343 SubModuleListener.processSubModuleExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530344 }
345
346 @Override
347 public void enterSubmoduleBody(GeneratedYangParser.SubmoduleBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530348 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530349 }
350
351 @Override
352 public void exitSubmoduleBody(GeneratedYangParser.SubmoduleBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530353 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530354 }
355
356 @Override
357 public void enterSubmoduleHeaderStatement(GeneratedYangParser.SubmoduleHeaderStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530358 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530359 }
360
361 @Override
362 public void exitSubmoduleHeaderStatement(GeneratedYangParser.SubmoduleHeaderStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530363 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530364 }
365
366 @Override
367 public void enterBelongstoStatement(GeneratedYangParser.BelongstoStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530368 BelongsToListener.processBelongsToEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530369 }
370
371 @Override
372 public void exitBelongstoStatement(GeneratedYangParser.BelongstoStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530373 BelongsToListener.processBelongsToExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530374 }
375
376 @Override
377 public void enterBelongstoStatementBody(GeneratedYangParser.BelongstoStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530378 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530379 }
380
381 @Override
382 public void exitBelongstoStatementBody(GeneratedYangParser.BelongstoStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530383 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530384 }
385
386 @Override
387 public void enterExtensionStatement(GeneratedYangParser.ExtensionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530388 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530389 }
390
391 @Override
392 public void exitExtensionStatement(GeneratedYangParser.ExtensionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530393 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530394 }
395
396 @Override
397 public void enterExtensionBody(GeneratedYangParser.ExtensionBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530398 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530399 }
400
401 @Override
402 public void exitExtensionBody(GeneratedYangParser.ExtensionBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530403 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530404 }
405
406 @Override
407 public void enterArgumentStatement(GeneratedYangParser.ArgumentStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530408 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530409 }
410
411 @Override
412 public void exitArgumentStatement(GeneratedYangParser.ArgumentStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530413 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530414 }
415
416 @Override
417 public void enterArgumentBody(GeneratedYangParser.ArgumentBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530418 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530419 }
420
421 @Override
422 public void exitArgumentBody(GeneratedYangParser.ArgumentBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530423 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530424 }
425
426 @Override
427 public void enterYinElementStatement(GeneratedYangParser.YinElementStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530428 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530429 }
430
431 @Override
432 public void exitYinElementStatement(GeneratedYangParser.YinElementStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530433 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530434 }
435
436 @Override
437 public void enterIdentityStatement(GeneratedYangParser.IdentityStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530438 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530439 }
440
441 @Override
442 public void exitIdentityStatement(GeneratedYangParser.IdentityStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530443 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530444 }
445
446 @Override
447 public void enterIdentityBody(GeneratedYangParser.IdentityBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530448 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530449 }
450
451 @Override
452 public void exitIdentityBody(GeneratedYangParser.IdentityBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530453 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530454 }
455
456 @Override
457 public void enterBaseStatement(GeneratedYangParser.BaseStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530458 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530459 }
460
461 @Override
462 public void exitBaseStatement(GeneratedYangParser.BaseStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530463 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530464 }
465
466 @Override
467 public void enterFeatureStatement(GeneratedYangParser.FeatureStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530468 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530469 }
470
471 @Override
472 public void exitFeatureStatement(GeneratedYangParser.FeatureStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530473 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530474 }
475
476 @Override
477 public void enterFeatureBody(GeneratedYangParser.FeatureBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530478 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530479 }
480
481 @Override
482 public void exitFeatureBody(GeneratedYangParser.FeatureBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530483 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530484 }
485
486 @Override
487 public void enterDataDefStatement(GeneratedYangParser.DataDefStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530488 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530489 }
490
491 @Override
492 public void exitDataDefStatement(GeneratedYangParser.DataDefStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530493 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530494 }
495
496 @Override
497 public void enterIfFeatureStatement(GeneratedYangParser.IfFeatureStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530498 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530499 }
500
501 @Override
502 public void exitIfFeatureStatement(GeneratedYangParser.IfFeatureStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530503 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530504 }
505
506 @Override
507 public void enterUnitsStatement(GeneratedYangParser.UnitsStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530508 UnitsListener.processUnitsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530509 }
510
511 @Override
512 public void exitUnitsStatement(GeneratedYangParser.UnitsStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530513 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530514 }
515
516 @Override
517 public void enterTypedefStatement(GeneratedYangParser.TypedefStatementContext ctx) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +0530518 TypeDefListener.processTypeDefEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530519 }
520
521 @Override
522 public void exitTypedefStatement(GeneratedYangParser.TypedefStatementContext ctx) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +0530523 TypeDefListener.processTypeDefExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530524 }
525
526 @Override
527 public void enterTypeStatement(GeneratedYangParser.TypeStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530528 TypeListener.processTypeEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530529 }
530
531 @Override
532 public void exitTypeStatement(GeneratedYangParser.TypeStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530533 TypeListener.processTypeExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530534 }
535
536 @Override
537 public void enterTypeBodyStatements(GeneratedYangParser.TypeBodyStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530538 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530539 }
540
541 @Override
542 public void exitTypeBodyStatements(GeneratedYangParser.TypeBodyStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530543 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530544 }
545
546 @Override
547 public void enterNumericalRestrictions(GeneratedYangParser.NumericalRestrictionsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530548 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530549 }
550
551 @Override
552 public void exitNumericalRestrictions(GeneratedYangParser.NumericalRestrictionsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530553 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530554 }
555
556 @Override
557 public void enterRangeStatement(GeneratedYangParser.RangeStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530558 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530559 }
560
561 @Override
562 public void exitRangeStatement(GeneratedYangParser.RangeStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530563 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530564 }
565
566 @Override
567 public void enterCommonStatements(GeneratedYangParser.CommonStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530568 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530569 }
570
571 @Override
572 public void exitCommonStatements(GeneratedYangParser.CommonStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530573 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530574 }
575
576 @Override
577 public void enterStringRestrictions(GeneratedYangParser.StringRestrictionsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530578 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530579 }
580
581 @Override
582 public void exitStringRestrictions(GeneratedYangParser.StringRestrictionsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530583 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530584 }
585
586 @Override
587 public void enterLengthStatement(GeneratedYangParser.LengthStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530588 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530589 }
590
591 @Override
592 public void exitLengthStatement(GeneratedYangParser.LengthStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530593 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530594 }
595
596 @Override
597 public void enterPatternStatement(GeneratedYangParser.PatternStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530598 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530599 }
600
601 @Override
602 public void exitPatternStatement(GeneratedYangParser.PatternStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530603 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530604 }
605
606 @Override
607 public void enterDefaultStatement(GeneratedYangParser.DefaultStatementContext ctx) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +0530608 DefaultListener.processDefaultEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530609 }
610
611 @Override
612 public void exitDefaultStatement(GeneratedYangParser.DefaultStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530613 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530614 }
615
616 @Override
617 public void enterEnumSpecification(GeneratedYangParser.EnumSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530618 EnumerationListener.processEnumerationEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530619 }
620
621 @Override
622 public void exitEnumSpecification(GeneratedYangParser.EnumSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530623 EnumerationListener.processEnumerationExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530624 }
625
626 @Override
627 public void enterEnumStatement(GeneratedYangParser.EnumStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530628 EnumListener.processEnumEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530629 }
630
631 @Override
632 public void exitEnumStatement(GeneratedYangParser.EnumStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530633 EnumListener.processEnumExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530634 }
635
636 @Override
637 public void enterEnumStatementBody(GeneratedYangParser.EnumStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530638 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530639 }
640
641 @Override
642 public void exitEnumStatementBody(GeneratedYangParser.EnumStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530643 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530644 }
645
646 @Override
647 public void enterLeafrefSpecification(GeneratedYangParser.LeafrefSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530648 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530649 }
650
651 @Override
652 public void exitLeafrefSpecification(GeneratedYangParser.LeafrefSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530653 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530654 }
655
656 @Override
657 public void enterPathStatement(GeneratedYangParser.PathStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530658 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530659 }
660
661 @Override
662 public void exitPathStatement(GeneratedYangParser.PathStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530663 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530664 }
665
666 @Override
667 public void enterRequireInstanceStatement(GeneratedYangParser.RequireInstanceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530668 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530669 }
670
671 @Override
672 public void exitRequireInstanceStatement(GeneratedYangParser.RequireInstanceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530673 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530674 }
675
676 @Override
677 public void enterInstanceIdentifierSpecification(GeneratedYangParser.InstanceIdentifierSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530678 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530679 }
680
681 @Override
682 public void exitInstanceIdentifierSpecification(GeneratedYangParser.InstanceIdentifierSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530683 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530684 }
685
686 @Override
687 public void enterIdentityrefSpecification(GeneratedYangParser.IdentityrefSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530688 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530689 }
690
691 @Override
692 public void exitIdentityrefSpecification(GeneratedYangParser.IdentityrefSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530693 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530694 }
695
696 @Override
697 public void enterUnionSpecification(GeneratedYangParser.UnionSpecificationContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530698 UnionListener.processUnionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530699 }
700
701 @Override
702 public void exitUnionSpecification(GeneratedYangParser.UnionSpecificationContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530703 UnionListener.processUnionExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530704 }
705
706 @Override
707 public void enterBitsSpecification(GeneratedYangParser.BitsSpecificationContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530708 BitsListener.processBitsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530709 }
710
711 @Override
712 public void exitBitsSpecification(GeneratedYangParser.BitsSpecificationContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530713 BitsListener.processBitsExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530714 }
715
716 @Override
717 public void enterBitStatement(GeneratedYangParser.BitStatementContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530718 BitListener.processBitEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530719 }
720
721 @Override
722 public void exitBitStatement(GeneratedYangParser.BitStatementContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530723 BitListener.processBitExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530724 }
725
726 @Override
727 public void enterBitBodyStatement(GeneratedYangParser.BitBodyStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530728 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530729 }
730
731 @Override
732 public void exitBitBodyStatement(GeneratedYangParser.BitBodyStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530733 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530734 }
735
736 @Override
737 public void enterPositionStatement(GeneratedYangParser.PositionStatementContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530738 PositionListener.processPositionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530739 }
740
741 @Override
742 public void exitPositionStatement(GeneratedYangParser.PositionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530743 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530744 }
745
746 @Override
747 public void enterStatusStatement(GeneratedYangParser.StatusStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530748 StatusListener.processStatusEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530749 }
750
751 @Override
752 public void exitStatusStatement(GeneratedYangParser.StatusStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530753 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530754 }
755
756 @Override
757 public void enterConfigStatement(GeneratedYangParser.ConfigStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530758 ConfigListener.processConfigEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530759 }
760
761 @Override
762 public void exitConfigStatement(GeneratedYangParser.ConfigStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530763 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530764 }
765
766 @Override
767 public void enterMandatoryStatement(GeneratedYangParser.MandatoryStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530768 MandatoryListener.processMandatoryEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530769 }
770
771 @Override
772 public void exitMandatoryStatement(GeneratedYangParser.MandatoryStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530773 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530774 }
775
776 @Override
777 public void enterPresenceStatement(GeneratedYangParser.PresenceStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530778 PresenceListener.processPresenceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530779 }
780
781 @Override
782 public void exitPresenceStatement(GeneratedYangParser.PresenceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530783 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530784 }
785
786 @Override
787 public void enterOrderedByStatement(GeneratedYangParser.OrderedByStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530788 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530789 }
790
791 @Override
792 public void exitOrderedByStatement(GeneratedYangParser.OrderedByStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530793 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530794 }
795
796 @Override
797 public void enterMustStatement(GeneratedYangParser.MustStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530798 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530799 }
800
801 @Override
802 public void exitMustStatement(GeneratedYangParser.MustStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530803 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530804 }
805
806 @Override
807 public void enterErrorMessageStatement(GeneratedYangParser.ErrorMessageStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530808 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530809 }
810
811 @Override
812 public void exitErrorMessageStatement(GeneratedYangParser.ErrorMessageStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530813 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530814 }
815
816 @Override
817 public void enterErrorAppTagStatement(GeneratedYangParser.ErrorAppTagStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530818 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530819 }
820
821 @Override
822 public void exitErrorAppTagStatement(GeneratedYangParser.ErrorAppTagStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530823 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530824 }
825
826 @Override
827 public void enterMinElementsStatement(GeneratedYangParser.MinElementsStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530828 MinElementsListener.processMinElementsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530829 }
830
831 @Override
832 public void exitMinElementsStatement(GeneratedYangParser.MinElementsStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530833 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530834 }
835
836 @Override
837 public void enterMaxElementsStatement(GeneratedYangParser.MaxElementsStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530838 MaxElementsListener.processMaxElementsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530839 }
840
841 @Override
842 public void exitMaxElementsStatement(GeneratedYangParser.MaxElementsStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530843 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530844 }
845
846 @Override
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530847 public void enterValueStatement(GeneratedYangParser.ValueStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530848 ValueListener.processValueEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530849 }
850
851 @Override
852 public void exitValueStatement(GeneratedYangParser.ValueStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530853 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530854 }
855
856 @Override
857 public void enterGroupingStatement(GeneratedYangParser.GroupingStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530858 GroupingListener.processGroupingEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530859 }
860
861 @Override
862 public void exitGroupingStatement(GeneratedYangParser.GroupingStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530863 GroupingListener.processGroupingExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530864 }
865
866 @Override
867 public void enterContainerStatement(GeneratedYangParser.ContainerStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530868 ContainerListener.processContainerEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530869 }
870
871 @Override
872 public void exitContainerStatement(GeneratedYangParser.ContainerStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530873 ContainerListener.processContainerExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530874 }
875
876 @Override
877 public void enterLeafStatement(GeneratedYangParser.LeafStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530878 LeafListener.processLeafEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530879 }
880
881 @Override
882 public void exitLeafStatement(GeneratedYangParser.LeafStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530883 LeafListener.processLeafExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530884 }
885
886 @Override
887 public void enterLeafListStatement(GeneratedYangParser.LeafListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530888 LeafListListener.processLeafListEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530889 }
890
891 @Override
892 public void exitLeafListStatement(GeneratedYangParser.LeafListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530893 LeafListListener.processLeafListExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530894 }
895
896 @Override
897 public void enterListStatement(GeneratedYangParser.ListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530898 ListListener.processListEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530899 }
900
901 @Override
902 public void exitListStatement(GeneratedYangParser.ListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530903 ListListener.processListExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530904 }
905
906 @Override
907 public void enterKeyStatement(GeneratedYangParser.KeyStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530908 KeyListener.processKeyEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530909 }
910
911 @Override
912 public void exitKeyStatement(GeneratedYangParser.KeyStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530913 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530914 }
915
916 @Override
917 public void enterUniqueStatement(GeneratedYangParser.UniqueStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530918 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530919 }
920
921 @Override
922 public void exitUniqueStatement(GeneratedYangParser.UniqueStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530923 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530924 }
925
926 @Override
927 public void enterChoiceStatement(GeneratedYangParser.ChoiceStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530928 ChoiceListener.processChoiceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530929 }
930
931 @Override
932 public void exitChoiceStatement(GeneratedYangParser.ChoiceStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530933 ChoiceListener.processChoiceExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530934 }
935
936 @Override
937 public void enterShortCaseStatement(GeneratedYangParser.ShortCaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530938 ShortCaseListener.processShortCaseEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530939 }
940
941 @Override
942 public void exitShortCaseStatement(GeneratedYangParser.ShortCaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530943 ShortCaseListener.processShortCaseExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530944 }
945
946 @Override
947 public void enterCaseStatement(GeneratedYangParser.CaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530948 CaseListener.processCaseEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530949 }
950
951 @Override
952 public void exitCaseStatement(GeneratedYangParser.CaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530953 CaseListener.processCaseExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530954 }
955
956 @Override
957 public void enterUsesStatement(GeneratedYangParser.UsesStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530958 UsesListener.processUsesEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530959 }
960
961 @Override
962 public void exitUsesStatement(GeneratedYangParser.UsesStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530963 UsesListener.processUsesExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530964 }
965
966 @Override
967 public void enterRefineStatement(GeneratedYangParser.RefineStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530968 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530969 }
970
971 @Override
972 public void exitRefineStatement(GeneratedYangParser.RefineStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530973 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530974 }
975
976 @Override
977 public void enterRefineContainerStatements(GeneratedYangParser.RefineContainerStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530978 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530979 }
980
981 @Override
982 public void exitRefineContainerStatements(GeneratedYangParser.RefineContainerStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530983 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530984 }
985
986 @Override
987 public void enterRefineLeafStatements(GeneratedYangParser.RefineLeafStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530988 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530989 }
990
991 @Override
992 public void exitRefineLeafStatements(GeneratedYangParser.RefineLeafStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530993 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530994 }
995
996 @Override
997 public void enterRefineLeafListStatements(GeneratedYangParser.RefineLeafListStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530998 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530999 }
1000
1001 @Override
1002 public void exitRefineLeafListStatements(GeneratedYangParser.RefineLeafListStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301003 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301004 }
1005
1006 @Override
1007 public void enterRefineListStatements(GeneratedYangParser.RefineListStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301008 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301009 }
1010
1011 @Override
1012 public void exitRefineListStatements(GeneratedYangParser.RefineListStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301013 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301014 }
1015
1016 @Override
1017 public void enterRefineChoiceStatements(GeneratedYangParser.RefineChoiceStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301018 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301019 }
1020
1021 @Override
1022 public void exitRefineChoiceStatements(GeneratedYangParser.RefineChoiceStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301023 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301024 }
1025
1026 @Override
1027 public void enterRefineCaseStatements(GeneratedYangParser.RefineCaseStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301028 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301029 }
1030
1031 @Override
1032 public void exitRefineCaseStatements(GeneratedYangParser.RefineCaseStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301033 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301034 }
1035
1036 @Override
1037 public void enterUsesAugmentStatement(GeneratedYangParser.UsesAugmentStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301038 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301039 }
1040
1041 @Override
1042 public void exitUsesAugmentStatement(GeneratedYangParser.UsesAugmentStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301043 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301044 }
1045
1046 @Override
1047 public void enterAugmentStatement(GeneratedYangParser.AugmentStatementContext ctx) {
Vidyashree Rama25bf4d02016-03-29 14:37:02 +05301048 AugmentListener.processAugmentEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301049 }
1050
1051 @Override
1052 public void exitAugmentStatement(GeneratedYangParser.AugmentStatementContext ctx) {
Vidyashree Rama25bf4d02016-03-29 14:37:02 +05301053 AugmentListener.processAugmentExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301054 }
1055
1056 @Override
1057 public void enterWhenStatement(GeneratedYangParser.WhenStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301058 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301059 }
1060
1061 @Override
1062 public void exitWhenStatement(GeneratedYangParser.WhenStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301063 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301064 }
1065
1066 @Override
1067 public void enterRpcStatement(GeneratedYangParser.RpcStatementContext ctx) {
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301068 RpcListener.processRpcEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301069 }
1070
1071 @Override
1072 public void exitRpcStatement(GeneratedYangParser.RpcStatementContext ctx) {
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301073 RpcListener.processRpcExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301074 }
1075
1076 @Override
1077 public void enterInputStatement(GeneratedYangParser.InputStatementContext ctx) {
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301078 InputListener.processInputEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301079 }
1080
1081 @Override
1082 public void exitInputStatement(GeneratedYangParser.InputStatementContext ctx) {
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301083 InputListener.processInputExit(this, ctx);
1084 }
1085
1086 @Override
1087 public void enterInputStatementBody(GeneratedYangParser.InputStatementBodyContext ctx) {
1088 }
1089
1090 @Override
1091 public void exitInputStatementBody(GeneratedYangParser.InputStatementBodyContext ctx) {
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301092 }
1093
1094 @Override
1095 public void enterOutputStatement(GeneratedYangParser.OutputStatementContext ctx) {
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301096 OutputListener.processOutputEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301097 }
1098
1099 @Override
1100 public void exitOutputStatement(GeneratedYangParser.OutputStatementContext ctx) {
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301101 OutputListener.processOutputExit(this, ctx);
1102 }
1103
1104 @Override
1105 public void enterOutputStatementBody(GeneratedYangParser.OutputStatementBodyContext ctx) {
1106 }
1107
1108 @Override
1109 public void exitOutputStatementBody(GeneratedYangParser.OutputStatementBodyContext ctx) {
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301110 }
1111
1112 @Override
1113 public void enterNotificationStatement(GeneratedYangParser.NotificationStatementContext ctx) {
Vidyashree Rama506cbe12016-03-28 11:59:27 +05301114 NotificationListener.processNotificationEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301115 }
1116
1117 @Override
1118 public void exitNotificationStatement(GeneratedYangParser.NotificationStatementContext ctx) {
Vidyashree Rama506cbe12016-03-28 11:59:27 +05301119 NotificationListener.processNotificationExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301120 }
1121
1122 @Override
1123 public void enterDeviationStatement(GeneratedYangParser.DeviationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301124 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301125 }
1126
1127 @Override
1128 public void exitDeviationStatement(GeneratedYangParser.DeviationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301129 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301130 }
1131
1132 @Override
1133 public void enterDeviateNotSupportedStatement(GeneratedYangParser.DeviateNotSupportedStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301134 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301135 }
1136
1137 @Override
1138 public void exitDeviateNotSupportedStatement(GeneratedYangParser.DeviateNotSupportedStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301139 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301140 }
1141
1142 @Override
1143 public void enterDeviateAddStatement(GeneratedYangParser.DeviateAddStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301144 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301145 }
1146
1147 @Override
1148 public void exitDeviateAddStatement(GeneratedYangParser.DeviateAddStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301149 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301150 }
1151
1152 @Override
1153 public void enterDeviateDeleteStatement(GeneratedYangParser.DeviateDeleteStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301154 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301155 }
1156
1157 @Override
1158 public void exitDeviateDeleteStatement(GeneratedYangParser.DeviateDeleteStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301159 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301160 }
1161
1162 @Override
1163 public void enterDeviateReplaceStatement(GeneratedYangParser.DeviateReplaceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301164 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301165 }
1166
1167 @Override
1168 public void exitDeviateReplaceStatement(GeneratedYangParser.DeviateReplaceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301169 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301170 }
1171
1172 @Override
1173 public void enterString(GeneratedYangParser.StringContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301174 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301175 }
1176
1177 @Override
1178 public void exitString(GeneratedYangParser.StringContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301179 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301180 }
1181
1182 @Override
Vidyashree Rama468f8282016-03-04 19:08:35 +05301183 public void enterIdentifier(GeneratedYangParser.IdentifierContext ctx) {
1184 // TODO: implement the method.
1185 }
1186
1187 @Override
1188 public void exitIdentifier(GeneratedYangParser.IdentifierContext ctx) {
1189 // TODO: implement the method.
1190 }
1191
1192 @Override
1193 public void enterDateArgumentString(GeneratedYangParser.DateArgumentStringContext ctx) {
1194 // TODO: implement the method.
1195 }
1196
1197 @Override
1198 public void exitDateArgumentString(GeneratedYangParser.DateArgumentStringContext ctx) {
1199 // TODO: implement the method.
1200 }
1201
1202 @Override
Vidyashree Rama8a6b1282016-03-15 10:18:25 +05301203 public void enterRange(GeneratedYangParser.RangeContext ctx) {
1204 // TODO: implement the method.
1205 }
1206
1207 @Override
1208 public void exitRange(GeneratedYangParser.RangeContext ctx) {
1209 // TODO: implement the method.
1210 }
1211
1212 @Override
1213 public void enterLength(GeneratedYangParser.LengthContext ctx) {
1214 // TODO: implement the method.
1215 }
1216
1217 @Override
1218 public void exitLength(GeneratedYangParser.LengthContext ctx) {
1219 // TODO: implement the method.
1220 }
1221
1222 @Override
1223 public void enterPath(GeneratedYangParser.PathContext ctx) {
1224 // TODO: implement the method.
1225 }
1226
1227 @Override
1228 public void exitPath(GeneratedYangParser.PathContext ctx) {
1229 // TODO: implement the method.
1230 }
1231
1232 @Override
1233 public void enterPosition(GeneratedYangParser.PositionContext ctx) {
1234 // TODO: implement the method.
1235 }
1236
1237 @Override
1238 public void exitPosition(GeneratedYangParser.PositionContext ctx) {
1239 // TODO: implement the method.
1240 }
1241
1242 @Override
1243 public void enterStatus(GeneratedYangParser.StatusContext ctx) {
1244 // TODO: implement the method.
1245 }
1246
1247 @Override
1248 public void exitStatus(GeneratedYangParser.StatusContext ctx) {
1249 // TODO: implement the method.
1250 }
1251
1252 @Override
1253 public void enterConfig(GeneratedYangParser.ConfigContext ctx) {
1254 // TODO: implement the method.
1255 }
1256
1257 @Override
1258 public void exitConfig(GeneratedYangParser.ConfigContext ctx) {
1259 // TODO: implement the method.
1260 }
1261
1262 @Override
1263 public void enterMandatory(GeneratedYangParser.MandatoryContext ctx) {
1264 // TODO: implement the method.
1265 }
1266
1267 @Override
1268 public void exitMandatory(GeneratedYangParser.MandatoryContext ctx) {
1269 // TODO: implement the method.
1270 }
1271
1272 @Override
1273 public void enterOrderedBy(GeneratedYangParser.OrderedByContext ctx) {
1274 // TODO: implement the method.
1275 }
1276
1277 @Override
1278 public void exitOrderedBy(GeneratedYangParser.OrderedByContext ctx) {
1279 // TODO: implement the method.
1280 }
1281
1282 @Override
1283 public void enterMinValue(GeneratedYangParser.MinValueContext ctx) {
1284 // TODO: implement the method.
1285 }
1286
1287 @Override
1288 public void exitMinValue(GeneratedYangParser.MinValueContext ctx) {
1289 // TODO: implement the method.
1290 }
1291
1292 @Override
1293 public void enterMaxValue(GeneratedYangParser.MaxValueContext ctx) {
1294 // TODO: implement the method.
1295 }
1296
1297 @Override
1298 public void exitMaxValue(GeneratedYangParser.MaxValueContext ctx) {
1299 // TODO: implement the method.
1300 }
1301
1302 @Override
1303 public void enterKey(GeneratedYangParser.KeyContext ctx) {
1304 // TODO: implement the method.
1305 }
1306
1307 @Override
1308 public void exitKey(GeneratedYangParser.KeyContext ctx) {
1309 // TODO: implement the method.
1310 }
1311
1312 @Override
1313 public void enterUnique(GeneratedYangParser.UniqueContext ctx) {
1314 // TODO: implement the method.
1315 }
1316
1317 @Override
1318 public void exitUnique(GeneratedYangParser.UniqueContext ctx) {
1319 // TODO: implement the method.
1320 }
1321
1322 @Override
1323 public void enterRefine(GeneratedYangParser.RefineContext ctx) {
1324 // TODO: implement the method.
1325 }
1326
1327 @Override
1328 public void exitRefine(GeneratedYangParser.RefineContext ctx) {
1329 // TODO: implement the method.
1330 }
1331
1332 @Override
1333 public void enterAugment(GeneratedYangParser.AugmentContext ctx) {
1334 // TODO: implement the method.
1335 }
1336
1337 @Override
1338 public void exitAugment(GeneratedYangParser.AugmentContext ctx) {
1339 // TODO: implement the method.
1340 }
1341
1342 @Override
1343 public void enterDeviation(GeneratedYangParser.DeviationContext ctx) {
1344 // TODO: implement the method.
1345 }
1346
1347 @Override
1348 public void exitDeviation(GeneratedYangParser.DeviationContext ctx) {
1349 // TODO: implement the method.
1350 }
1351
1352 @Override
1353 public void enterYangConstruct(GeneratedYangParser.YangConstructContext ctx) {
1354 // TODO: implement the method.
1355 }
1356
1357 @Override
1358 public void exitYangConstruct(GeneratedYangParser.YangConstructContext ctx) {
1359 // TODO: implement the method.
1360 }
1361
1362 @Override
1363 public void enterVersion(GeneratedYangParser.VersionContext ctx) {
1364 // TODO: implement the method.
1365 }
1366
1367 @Override
1368 public void exitVersion(GeneratedYangParser.VersionContext ctx) {
1369 // TODO: implement the method.
1370 }
1371
1372 @Override
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301373 public void visitTerminal(TerminalNode terminalNode) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301374 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301375 }
1376
1377 @Override
1378 public void visitErrorNode(ErrorNode errorNode) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301379 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301380 }
1381
1382 @Override
1383 public void enterEveryRule(ParserRuleContext parserRuleContext) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301384 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301385 }
1386
1387 @Override
1388 public void exitEveryRule(ParserRuleContext parserRuleContext) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301389 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301390 }
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301391}