blob: 820139e975ce09bcb1ecc0d175bdbe72e44c0a70 [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;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053028import org.onosproject.yangutils.parser.impl.listeners.BaseFileListener;
29import org.onosproject.yangutils.parser.impl.listeners.BelongsToListener;
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +053030import org.onosproject.yangutils.parser.impl.listeners.BitListener;
31import org.onosproject.yangutils.parser.impl.listeners.BitsListener;
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053032import org.onosproject.yangutils.parser.impl.listeners.CaseListener;
33import org.onosproject.yangutils.parser.impl.listeners.ChoiceListener;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053034import org.onosproject.yangutils.parser.impl.listeners.ConfigListener;
35import org.onosproject.yangutils.parser.impl.listeners.ContactListener;
36import org.onosproject.yangutils.parser.impl.listeners.ContainerListener;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053037import org.onosproject.yangutils.parser.impl.listeners.DefaultListener;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053038import org.onosproject.yangutils.parser.impl.listeners.DescriptionListener;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053039import org.onosproject.yangutils.parser.impl.listeners.EnumListener;
40import org.onosproject.yangutils.parser.impl.listeners.EnumerationListener;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053041import org.onosproject.yangutils.parser.impl.listeners.GroupingListener;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053042import org.onosproject.yangutils.parser.impl.listeners.ImportListener;
43import org.onosproject.yangutils.parser.impl.listeners.IncludeListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053044import org.onosproject.yangutils.parser.impl.listeners.KeyListener;
45import org.onosproject.yangutils.parser.impl.listeners.LeafListListener;
46import org.onosproject.yangutils.parser.impl.listeners.LeafListener;
47import org.onosproject.yangutils.parser.impl.listeners.ListListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053048import org.onosproject.yangutils.parser.impl.listeners.MandatoryListener;
49import org.onosproject.yangutils.parser.impl.listeners.MaxElementsListener;
50import org.onosproject.yangutils.parser.impl.listeners.MinElementsListener;
51import org.onosproject.yangutils.parser.impl.listeners.ModuleListener;
52import org.onosproject.yangutils.parser.impl.listeners.NamespaceListener;
53import org.onosproject.yangutils.parser.impl.listeners.OrganizationListener;
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +053054import org.onosproject.yangutils.parser.impl.listeners.PositionListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053055import org.onosproject.yangutils.parser.impl.listeners.PrefixListener;
56import org.onosproject.yangutils.parser.impl.listeners.PresenceListener;
57import org.onosproject.yangutils.parser.impl.listeners.ReferenceListener;
58import org.onosproject.yangutils.parser.impl.listeners.RevisionDateListener;
59import org.onosproject.yangutils.parser.impl.listeners.RevisionListener;
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053060import org.onosproject.yangutils.parser.impl.listeners.ShortCaseListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053061import org.onosproject.yangutils.parser.impl.listeners.StatusListener;
62import org.onosproject.yangutils.parser.impl.listeners.SubModuleListener;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053063import org.onosproject.yangutils.parser.impl.listeners.TypeDefListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053064import org.onosproject.yangutils.parser.impl.listeners.TypeListener;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053065import org.onosproject.yangutils.parser.impl.listeners.UnionListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053066import org.onosproject.yangutils.parser.impl.listeners.UnitsListener;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053067import org.onosproject.yangutils.parser.impl.listeners.UsesListener;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053068import org.onosproject.yangutils.parser.impl.listeners.ValueListener;
Vidyashree Rama19d8e972016-02-13 12:36:40 +053069import org.onosproject.yangutils.parser.impl.listeners.VersionListener;
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +053070
71/**
72 * ANTLR generates a parse-tree listener interface that responds to events
73 * triggered by the built-in tree walker. The methods in listener are just
74 * callbacks. This class implements listener interface and generates the
75 * corresponding data model tree.
76 */
77public class TreeWalkListener implements GeneratedYangListener {
78
79 // List of parsable node entries maintained in stack
80 private Stack<Parsable> parsedDataStack = new Stack<>();
81
82 // Parse tree root node
83 private YangNode rootNode;
84
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +053085 /**
86 * Returns stack of parsable data.
87 *
88 * @return stack of parsable data
89 */
90 public Stack<Parsable> getParsedDataStack() {
91 return parsedDataStack;
92 }
93
94 /**
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +053095 * Returns root node.
96 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053097 * @return rootNode of data model tree
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +053098 */
99 public YangNode getRootNode() {
100 return rootNode;
101 }
102
103 /**
104 * Set parsed data stack.
105 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530106 * @param parsedDataStack stack of parsable data objects
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530107 */
108 public void setParsedDataStack(Stack<Parsable> parsedDataStack) {
109 this.parsedDataStack = parsedDataStack;
110 }
111
112 /**
113 * Set root node.
114 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530115 * @param rootNode root node of data model tree
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530116 */
117 public void setRootNode(YangNode rootNode) {
118 this.rootNode = rootNode;
119 }
120
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530121 @Override
122 public void enterYangfile(GeneratedYangParser.YangfileContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530123 BaseFileListener.processYangFileEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530124 }
125
126 @Override
127 public void exitYangfile(GeneratedYangParser.YangfileContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530128 BaseFileListener.processYangFileExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530129 }
130
131 @Override
132 public void enterModuleStatement(GeneratedYangParser.ModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530133 ModuleListener.processModuleEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530134 }
135
136 @Override
137 public void exitModuleStatement(GeneratedYangParser.ModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530138 ModuleListener.processModuleExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530139 }
140
141 @Override
142 public void enterModuleBody(GeneratedYangParser.ModuleBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530143 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530144 }
145
146 @Override
147 public void exitModuleBody(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 enterModuleHeaderStatement(GeneratedYangParser.ModuleHeaderStatementContext 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 exitModuleHeaderStatement(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 enterLinkageStatements(GeneratedYangParser.LinkageStatementsContext 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 exitLinkageStatements(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 enterMetaStatements(GeneratedYangParser.MetaStatementsContext 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 exitMetaStatements(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 enterRevisionStatements(GeneratedYangParser.RevisionStatementsContext 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 exitRevisionStatements(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 enterBodyStatements(GeneratedYangParser.BodyStatementsContext 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 exitBodyStatements(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 enterYangVersionStatement(GeneratedYangParser.YangVersionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530203 VersionListener.processVersionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530204 }
205
206 @Override
207 public void exitYangVersionStatement(GeneratedYangParser.YangVersionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530208 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530209 }
210
211 @Override
212 public void enterNamespaceStatement(GeneratedYangParser.NamespaceStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530213 NamespaceListener.processNamespaceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530214 }
215
216 @Override
217 public void exitNamespaceStatement(GeneratedYangParser.NamespaceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530218 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530219 }
220
221 @Override
222 public void enterPrefixStatement(GeneratedYangParser.PrefixStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530223 PrefixListener.processPrefixEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530224 }
225
226 @Override
227 public void exitPrefixStatement(GeneratedYangParser.PrefixStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530228 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530229 }
230
231 @Override
232 public void enterImportStatement(GeneratedYangParser.ImportStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530233 ImportListener.processImportEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530234 }
235
236 @Override
237 public void exitImportStatement(GeneratedYangParser.ImportStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530238 ImportListener.processImportExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530239 }
240
241 @Override
242 public void enterImportStatementBody(GeneratedYangParser.ImportStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530243 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530244 }
245
246 @Override
247 public void exitImportStatementBody(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 enterRevisionDateStatement(GeneratedYangParser.RevisionDateStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530253 RevisionDateListener.processRevisionDateEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530254 }
255
256 @Override
257 public void exitRevisionDateStatement(GeneratedYangParser.RevisionDateStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530258 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530259 }
260
261 @Override
262 public void enterIncludeStatement(GeneratedYangParser.IncludeStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530263 IncludeListener.processIncludeEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530264 }
265
266 @Override
267 public void exitIncludeStatement(GeneratedYangParser.IncludeStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530268 IncludeListener.processIncludeExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530269 }
270
271 @Override
272 public void enterOrganizationStatement(GeneratedYangParser.OrganizationStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530273 OrganizationListener.processOrganizationEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530274 }
275
276 @Override
277 public void exitOrganizationStatement(GeneratedYangParser.OrganizationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530278 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530279 }
280
281 @Override
282 public void enterContactStatement(GeneratedYangParser.ContactStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530283 ContactListener.processContactEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530284 }
285
286 @Override
287 public void exitContactStatement(GeneratedYangParser.ContactStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530288 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530289 }
290
291 @Override
292 public void enterDescriptionStatement(GeneratedYangParser.DescriptionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530293 DescriptionListener.processDescriptionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530294 }
295
296 @Override
297 public void exitDescriptionStatement(GeneratedYangParser.DescriptionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530298 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530299 }
300
301 @Override
302 public void enterReferenceStatement(GeneratedYangParser.ReferenceStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530303 ReferenceListener.processReferenceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530304 }
305
306 @Override
307 public void exitReferenceStatement(GeneratedYangParser.ReferenceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530308 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530309 }
310
311 @Override
312 public void enterRevisionStatement(GeneratedYangParser.RevisionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530313 RevisionListener.processRevisionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530314 }
315
316 @Override
317 public void exitRevisionStatement(GeneratedYangParser.RevisionStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530318 RevisionListener.processRevisionExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530319 }
320
321 @Override
322 public void enterRevisionStatementBody(GeneratedYangParser.RevisionStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530323 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530324 }
325
326 @Override
327 public void exitRevisionStatementBody(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 enterSubModuleStatement(GeneratedYangParser.SubModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530333 SubModuleListener.processSubModuleEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530334 }
335
336 @Override
337 public void exitSubModuleStatement(GeneratedYangParser.SubModuleStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530338 SubModuleListener.processSubModuleExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530339 }
340
341 @Override
342 public void enterSubmoduleBody(GeneratedYangParser.SubmoduleBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530343 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530344 }
345
346 @Override
347 public void exitSubmoduleBody(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 enterSubmoduleHeaderStatement(GeneratedYangParser.SubmoduleHeaderStatementContext 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 exitSubmoduleHeaderStatement(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 enterBelongstoStatement(GeneratedYangParser.BelongstoStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530363 BelongsToListener.processBelongsToEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530364 }
365
366 @Override
367 public void exitBelongstoStatement(GeneratedYangParser.BelongstoStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530368 BelongsToListener.processBelongsToExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530369 }
370
371 @Override
372 public void enterBelongstoStatementBody(GeneratedYangParser.BelongstoStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530373 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530374 }
375
376 @Override
377 public void exitBelongstoStatementBody(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 enterExtensionStatement(GeneratedYangParser.ExtensionStatementContext 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 exitExtensionStatement(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 enterExtensionBody(GeneratedYangParser.ExtensionBodyContext 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 exitExtensionBody(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 enterArgumentStatement(GeneratedYangParser.ArgumentStatementContext 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 exitArgumentStatement(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 enterArgumentBody(GeneratedYangParser.ArgumentBodyContext 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 exitArgumentBody(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 enterYinElementStatement(GeneratedYangParser.YinElementStatementContext 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 exitYinElementStatement(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 enterIdentityStatement(GeneratedYangParser.IdentityStatementContext 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 exitIdentityStatement(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 enterIdentityBody(GeneratedYangParser.IdentityBodyContext 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 exitIdentityBody(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 enterBaseStatement(GeneratedYangParser.BaseStatementContext 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 exitBaseStatement(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 enterFeatureStatement(GeneratedYangParser.FeatureStatementContext 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 exitFeatureStatement(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 enterFeatureBody(GeneratedYangParser.FeatureBodyContext 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 exitFeatureBody(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 enterDataDefStatement(GeneratedYangParser.DataDefStatementContext 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 exitDataDefStatement(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 enterIfFeatureStatement(GeneratedYangParser.IfFeatureStatementContext 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 exitIfFeatureStatement(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 enterUnitsStatement(GeneratedYangParser.UnitsStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530503 UnitsListener.processUnitsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530504 }
505
506 @Override
507 public void exitUnitsStatement(GeneratedYangParser.UnitsStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530508 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530509 }
510
511 @Override
512 public void enterTypedefStatement(GeneratedYangParser.TypedefStatementContext ctx) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +0530513 TypeDefListener.processTypeDefEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530514 }
515
516 @Override
517 public void exitTypedefStatement(GeneratedYangParser.TypedefStatementContext ctx) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +0530518 TypeDefListener.processTypeDefExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530519 }
520
521 @Override
522 public void enterTypeStatement(GeneratedYangParser.TypeStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530523 TypeListener.processTypeEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530524 }
525
526 @Override
527 public void exitTypeStatement(GeneratedYangParser.TypeStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530528 TypeListener.processTypeExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530529 }
530
531 @Override
532 public void enterTypeBodyStatements(GeneratedYangParser.TypeBodyStatementsContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530533 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530534 }
535
536 @Override
537 public void exitTypeBodyStatements(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 enterNumericalRestrictions(GeneratedYangParser.NumericalRestrictionsContext 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 exitNumericalRestrictions(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 enterRangeStatement(GeneratedYangParser.RangeStatementContext 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 exitRangeStatement(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 enterCommonStatements(GeneratedYangParser.CommonStatementsContext 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 exitCommonStatements(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 enterStringRestrictions(GeneratedYangParser.StringRestrictionsContext 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 exitStringRestrictions(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 enterLengthStatement(GeneratedYangParser.LengthStatementContext 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 exitLengthStatement(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 enterPatternStatement(GeneratedYangParser.PatternStatementContext 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 exitPatternStatement(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 enterDefaultStatement(GeneratedYangParser.DefaultStatementContext ctx) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +0530603 DefaultListener.processDefaultEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530604 }
605
606 @Override
607 public void exitDefaultStatement(GeneratedYangParser.DefaultStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530608 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530609 }
610
611 @Override
612 public void enterEnumSpecification(GeneratedYangParser.EnumSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530613 EnumerationListener.processEnumerationEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530614 }
615
616 @Override
617 public void exitEnumSpecification(GeneratedYangParser.EnumSpecificationContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530618 EnumerationListener.processEnumerationExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530619 }
620
621 @Override
622 public void enterEnumStatement(GeneratedYangParser.EnumStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530623 EnumListener.processEnumEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530624 }
625
626 @Override
627 public void exitEnumStatement(GeneratedYangParser.EnumStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530628 EnumListener.processEnumExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530629 }
630
631 @Override
632 public void enterEnumStatementBody(GeneratedYangParser.EnumStatementBodyContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530633 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530634 }
635
636 @Override
637 public void exitEnumStatementBody(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 enterLeafrefSpecification(GeneratedYangParser.LeafrefSpecificationContext 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 exitLeafrefSpecification(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 enterPathStatement(GeneratedYangParser.PathStatementContext 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 exitPathStatement(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 enterRequireInstanceStatement(GeneratedYangParser.RequireInstanceStatementContext 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 exitRequireInstanceStatement(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 enterInstanceIdentifierSpecification(GeneratedYangParser.InstanceIdentifierSpecificationContext 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 exitInstanceIdentifierSpecification(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 enterIdentityrefSpecification(GeneratedYangParser.IdentityrefSpecificationContext 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 exitIdentityrefSpecification(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 enterUnionSpecification(GeneratedYangParser.UnionSpecificationContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530693 UnionListener.processUnionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530694 }
695
696 @Override
697 public void exitUnionSpecification(GeneratedYangParser.UnionSpecificationContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530698 UnionListener.processUnionExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530699 }
700
701 @Override
702 public void enterBitsSpecification(GeneratedYangParser.BitsSpecificationContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530703 BitsListener.processBitsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530704 }
705
706 @Override
707 public void exitBitsSpecification(GeneratedYangParser.BitsSpecificationContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530708 BitsListener.processBitsExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530709 }
710
711 @Override
712 public void enterBitStatement(GeneratedYangParser.BitStatementContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530713 BitListener.processBitEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530714 }
715
716 @Override
717 public void exitBitStatement(GeneratedYangParser.BitStatementContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530718 BitListener.processBitExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530719 }
720
721 @Override
722 public void enterBitBodyStatement(GeneratedYangParser.BitBodyStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530723 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530724 }
725
726 @Override
727 public void exitBitBodyStatement(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 enterPositionStatement(GeneratedYangParser.PositionStatementContext ctx) {
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +0530733 PositionListener.processPositionEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530734 }
735
736 @Override
737 public void exitPositionStatement(GeneratedYangParser.PositionStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530738 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530739 }
740
741 @Override
742 public void enterStatusStatement(GeneratedYangParser.StatusStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530743 StatusListener.processStatusEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530744 }
745
746 @Override
747 public void exitStatusStatement(GeneratedYangParser.StatusStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530748 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530749 }
750
751 @Override
752 public void enterConfigStatement(GeneratedYangParser.ConfigStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530753 ConfigListener.processConfigEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530754 }
755
756 @Override
757 public void exitConfigStatement(GeneratedYangParser.ConfigStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530758 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530759 }
760
761 @Override
762 public void enterMandatoryStatement(GeneratedYangParser.MandatoryStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530763 MandatoryListener.processMandatoryEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530764 }
765
766 @Override
767 public void exitMandatoryStatement(GeneratedYangParser.MandatoryStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530768 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530769 }
770
771 @Override
772 public void enterPresenceStatement(GeneratedYangParser.PresenceStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530773 PresenceListener.processPresenceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530774 }
775
776 @Override
777 public void exitPresenceStatement(GeneratedYangParser.PresenceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530778 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530779 }
780
781 @Override
782 public void enterOrderedByStatement(GeneratedYangParser.OrderedByStatementContext 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 exitOrderedByStatement(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 enterMustStatement(GeneratedYangParser.MustStatementContext 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 exitMustStatement(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 enterErrorMessageStatement(GeneratedYangParser.ErrorMessageStatementContext 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 exitErrorMessageStatement(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 enterErrorAppTagStatement(GeneratedYangParser.ErrorAppTagStatementContext 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 exitErrorAppTagStatement(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 enterMinElementsStatement(GeneratedYangParser.MinElementsStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530823 MinElementsListener.processMinElementsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530824 }
825
826 @Override
827 public void exitMinElementsStatement(GeneratedYangParser.MinElementsStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530828 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530829 }
830
831 @Override
832 public void enterMaxElementsStatement(GeneratedYangParser.MaxElementsStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530833 MaxElementsListener.processMaxElementsEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530834 }
835
836 @Override
837 public void exitMaxElementsStatement(GeneratedYangParser.MaxElementsStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530838 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530839 }
840
841 @Override
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530842 public void enterValueStatement(GeneratedYangParser.ValueStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530843 ValueListener.processValueEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530844 }
845
846 @Override
847 public void exitValueStatement(GeneratedYangParser.ValueStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530848 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530849 }
850
851 @Override
852 public void enterGroupingStatement(GeneratedYangParser.GroupingStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530853 GroupingListener.processGroupingEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530854 }
855
856 @Override
857 public void exitGroupingStatement(GeneratedYangParser.GroupingStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530858 GroupingListener.processGroupingExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530859 }
860
861 @Override
862 public void enterContainerStatement(GeneratedYangParser.ContainerStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530863 ContainerListener.processContainerEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530864 }
865
866 @Override
867 public void exitContainerStatement(GeneratedYangParser.ContainerStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530868 ContainerListener.processContainerExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530869 }
870
871 @Override
872 public void enterLeafStatement(GeneratedYangParser.LeafStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530873 LeafListener.processLeafEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530874 }
875
876 @Override
877 public void exitLeafStatement(GeneratedYangParser.LeafStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530878 LeafListener.processLeafExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530879 }
880
881 @Override
882 public void enterLeafListStatement(GeneratedYangParser.LeafListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530883 LeafListListener.processLeafListEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530884 }
885
886 @Override
887 public void exitLeafListStatement(GeneratedYangParser.LeafListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530888 LeafListListener.processLeafListExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530889 }
890
891 @Override
892 public void enterListStatement(GeneratedYangParser.ListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530893 ListListener.processListEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530894 }
895
896 @Override
897 public void exitListStatement(GeneratedYangParser.ListStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530898 ListListener.processListExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530899 }
900
901 @Override
902 public void enterKeyStatement(GeneratedYangParser.KeyStatementContext ctx) {
Vidyashree Rama19d8e972016-02-13 12:36:40 +0530903 KeyListener.processKeyEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530904 }
905
906 @Override
907 public void exitKeyStatement(GeneratedYangParser.KeyStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530908 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530909 }
910
911 @Override
912 public void enterUniqueStatement(GeneratedYangParser.UniqueStatementContext 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 exitUniqueStatement(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 enterChoiceStatement(GeneratedYangParser.ChoiceStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530923 ChoiceListener.processChoiceEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530924 }
925
926 @Override
927 public void exitChoiceStatement(GeneratedYangParser.ChoiceStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530928 ChoiceListener.processChoiceExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530929 }
930
931 @Override
932 public void enterShortCaseStatement(GeneratedYangParser.ShortCaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530933 ShortCaseListener.processShortCaseEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530934 }
935
936 @Override
937 public void exitShortCaseStatement(GeneratedYangParser.ShortCaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530938 ShortCaseListener.processShortCaseExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530939 }
940
941 @Override
942 public void enterCaseStatement(GeneratedYangParser.CaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530943 CaseListener.processCaseEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530944 }
945
946 @Override
947 public void exitCaseStatement(GeneratedYangParser.CaseStatementContext ctx) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530948 CaseListener.processCaseExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530949 }
950
951 @Override
952 public void enterUsesStatement(GeneratedYangParser.UsesStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530953 UsesListener.processUsesEntry(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530954 }
955
956 @Override
957 public void exitUsesStatement(GeneratedYangParser.UsesStatementContext ctx) {
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530958 UsesListener.processUsesExit(this, ctx);
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530959 }
960
961 @Override
962 public void enterRefineStatement(GeneratedYangParser.RefineStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530963 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +0530964 }
965
966 @Override
967 public void exitRefineStatement(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 enterRefineContainerStatements(GeneratedYangParser.RefineContainerStatementsContext 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 exitRefineContainerStatements(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 enterRefineLeafStatements(GeneratedYangParser.RefineLeafStatementsContext 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 exitRefineLeafStatements(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 enterRefineLeafListStatements(GeneratedYangParser.RefineLeafListStatementsContext 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 exitRefineLeafListStatements(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 enterRefineListStatements(GeneratedYangParser.RefineListStatementsContext 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 exitRefineListStatements(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 enterRefineChoiceStatements(GeneratedYangParser.RefineChoiceStatementsContext 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 exitRefineChoiceStatements(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 enterRefineCaseStatements(GeneratedYangParser.RefineCaseStatementsContext 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 exitRefineCaseStatements(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 enterUsesAugmentStatement(GeneratedYangParser.UsesAugmentStatementContext 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 exitUsesAugmentStatement(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 enterAugmentStatement(GeneratedYangParser.AugmentStatementContext 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 exitAugmentStatement(GeneratedYangParser.AugmentStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301048 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301049 }
1050
1051 @Override
1052 public void enterWhenStatement(GeneratedYangParser.WhenStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301053 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301054 }
1055
1056 @Override
1057 public void exitWhenStatement(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 enterRpcStatement(GeneratedYangParser.RpcStatementContext 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 exitRpcStatement(GeneratedYangParser.RpcStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301068 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301069 }
1070
1071 @Override
1072 public void enterInputStatement(GeneratedYangParser.InputStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301073 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301074 }
1075
1076 @Override
1077 public void exitInputStatement(GeneratedYangParser.InputStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301078 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301079 }
1080
1081 @Override
1082 public void enterOutputStatement(GeneratedYangParser.OutputStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301083 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301084 }
1085
1086 @Override
1087 public void exitOutputStatement(GeneratedYangParser.OutputStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301088 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301089 }
1090
1091 @Override
1092 public void enterNotificationStatement(GeneratedYangParser.NotificationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301093 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301094 }
1095
1096 @Override
1097 public void exitNotificationStatement(GeneratedYangParser.NotificationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301098 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301099 }
1100
1101 @Override
1102 public void enterDeviationStatement(GeneratedYangParser.DeviationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301103 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301104 }
1105
1106 @Override
1107 public void exitDeviationStatement(GeneratedYangParser.DeviationStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301108 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301109 }
1110
1111 @Override
1112 public void enterDeviateNotSupportedStatement(GeneratedYangParser.DeviateNotSupportedStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301113 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301114 }
1115
1116 @Override
1117 public void exitDeviateNotSupportedStatement(GeneratedYangParser.DeviateNotSupportedStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301118 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301119 }
1120
1121 @Override
1122 public void enterDeviateAddStatement(GeneratedYangParser.DeviateAddStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301123 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301124 }
1125
1126 @Override
1127 public void exitDeviateAddStatement(GeneratedYangParser.DeviateAddStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301128 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301129 }
1130
1131 @Override
1132 public void enterDeviateDeleteStatement(GeneratedYangParser.DeviateDeleteStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301133 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301134 }
1135
1136 @Override
1137 public void exitDeviateDeleteStatement(GeneratedYangParser.DeviateDeleteStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301138 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301139 }
1140
1141 @Override
1142 public void enterDeviateReplaceStatement(GeneratedYangParser.DeviateReplaceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301143 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301144 }
1145
1146 @Override
1147 public void exitDeviateReplaceStatement(GeneratedYangParser.DeviateReplaceStatementContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301148 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301149 }
1150
1151 @Override
1152 public void enterString(GeneratedYangParser.StringContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301153 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301154 }
1155
1156 @Override
1157 public void exitString(GeneratedYangParser.StringContext ctx) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301158 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301159 }
1160
1161 @Override
Vidyashree Rama468f8282016-03-04 19:08:35 +05301162 public void enterIdentifier(GeneratedYangParser.IdentifierContext ctx) {
1163 // TODO: implement the method.
1164 }
1165
1166 @Override
1167 public void exitIdentifier(GeneratedYangParser.IdentifierContext ctx) {
1168 // TODO: implement the method.
1169 }
1170
1171 @Override
1172 public void enterDateArgumentString(GeneratedYangParser.DateArgumentStringContext ctx) {
1173 // TODO: implement the method.
1174 }
1175
1176 @Override
1177 public void exitDateArgumentString(GeneratedYangParser.DateArgumentStringContext ctx) {
1178 // TODO: implement the method.
1179 }
1180
1181 @Override
Vidyashree Rama8a6b1282016-03-15 10:18:25 +05301182 public void enterRange(GeneratedYangParser.RangeContext ctx) {
1183 // TODO: implement the method.
1184 }
1185
1186 @Override
1187 public void exitRange(GeneratedYangParser.RangeContext ctx) {
1188 // TODO: implement the method.
1189 }
1190
1191 @Override
1192 public void enterLength(GeneratedYangParser.LengthContext ctx) {
1193 // TODO: implement the method.
1194 }
1195
1196 @Override
1197 public void exitLength(GeneratedYangParser.LengthContext ctx) {
1198 // TODO: implement the method.
1199 }
1200
1201 @Override
1202 public void enterPath(GeneratedYangParser.PathContext ctx) {
1203 // TODO: implement the method.
1204 }
1205
1206 @Override
1207 public void exitPath(GeneratedYangParser.PathContext ctx) {
1208 // TODO: implement the method.
1209 }
1210
1211 @Override
1212 public void enterPosition(GeneratedYangParser.PositionContext ctx) {
1213 // TODO: implement the method.
1214 }
1215
1216 @Override
1217 public void exitPosition(GeneratedYangParser.PositionContext ctx) {
1218 // TODO: implement the method.
1219 }
1220
1221 @Override
1222 public void enterStatus(GeneratedYangParser.StatusContext ctx) {
1223 // TODO: implement the method.
1224 }
1225
1226 @Override
1227 public void exitStatus(GeneratedYangParser.StatusContext ctx) {
1228 // TODO: implement the method.
1229 }
1230
1231 @Override
1232 public void enterConfig(GeneratedYangParser.ConfigContext ctx) {
1233 // TODO: implement the method.
1234 }
1235
1236 @Override
1237 public void exitConfig(GeneratedYangParser.ConfigContext ctx) {
1238 // TODO: implement the method.
1239 }
1240
1241 @Override
1242 public void enterMandatory(GeneratedYangParser.MandatoryContext ctx) {
1243 // TODO: implement the method.
1244 }
1245
1246 @Override
1247 public void exitMandatory(GeneratedYangParser.MandatoryContext ctx) {
1248 // TODO: implement the method.
1249 }
1250
1251 @Override
1252 public void enterOrderedBy(GeneratedYangParser.OrderedByContext ctx) {
1253 // TODO: implement the method.
1254 }
1255
1256 @Override
1257 public void exitOrderedBy(GeneratedYangParser.OrderedByContext ctx) {
1258 // TODO: implement the method.
1259 }
1260
1261 @Override
1262 public void enterMinValue(GeneratedYangParser.MinValueContext ctx) {
1263 // TODO: implement the method.
1264 }
1265
1266 @Override
1267 public void exitMinValue(GeneratedYangParser.MinValueContext ctx) {
1268 // TODO: implement the method.
1269 }
1270
1271 @Override
1272 public void enterMaxValue(GeneratedYangParser.MaxValueContext ctx) {
1273 // TODO: implement the method.
1274 }
1275
1276 @Override
1277 public void exitMaxValue(GeneratedYangParser.MaxValueContext ctx) {
1278 // TODO: implement the method.
1279 }
1280
1281 @Override
1282 public void enterKey(GeneratedYangParser.KeyContext ctx) {
1283 // TODO: implement the method.
1284 }
1285
1286 @Override
1287 public void exitKey(GeneratedYangParser.KeyContext ctx) {
1288 // TODO: implement the method.
1289 }
1290
1291 @Override
1292 public void enterUnique(GeneratedYangParser.UniqueContext ctx) {
1293 // TODO: implement the method.
1294 }
1295
1296 @Override
1297 public void exitUnique(GeneratedYangParser.UniqueContext ctx) {
1298 // TODO: implement the method.
1299 }
1300
1301 @Override
1302 public void enterRefine(GeneratedYangParser.RefineContext ctx) {
1303 // TODO: implement the method.
1304 }
1305
1306 @Override
1307 public void exitRefine(GeneratedYangParser.RefineContext ctx) {
1308 // TODO: implement the method.
1309 }
1310
1311 @Override
1312 public void enterAugment(GeneratedYangParser.AugmentContext ctx) {
1313 // TODO: implement the method.
1314 }
1315
1316 @Override
1317 public void exitAugment(GeneratedYangParser.AugmentContext ctx) {
1318 // TODO: implement the method.
1319 }
1320
1321 @Override
1322 public void enterDeviation(GeneratedYangParser.DeviationContext ctx) {
1323 // TODO: implement the method.
1324 }
1325
1326 @Override
1327 public void exitDeviation(GeneratedYangParser.DeviationContext ctx) {
1328 // TODO: implement the method.
1329 }
1330
1331 @Override
1332 public void enterYangConstruct(GeneratedYangParser.YangConstructContext ctx) {
1333 // TODO: implement the method.
1334 }
1335
1336 @Override
1337 public void exitYangConstruct(GeneratedYangParser.YangConstructContext ctx) {
1338 // TODO: implement the method.
1339 }
1340
1341 @Override
1342 public void enterVersion(GeneratedYangParser.VersionContext ctx) {
1343 // TODO: implement the method.
1344 }
1345
1346 @Override
1347 public void exitVersion(GeneratedYangParser.VersionContext ctx) {
1348 // TODO: implement the method.
1349 }
1350
1351 @Override
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301352 public void visitTerminal(TerminalNode terminalNode) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301353 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301354 }
1355
1356 @Override
1357 public void visitErrorNode(ErrorNode errorNode) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301358 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301359 }
1360
1361 @Override
1362 public void enterEveryRule(ParserRuleContext parserRuleContext) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301363 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301364 }
1365
1366 @Override
1367 public void exitEveryRule(ParserRuleContext parserRuleContext) {
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301368 // TODO: implement the method.
Gaurav Agrawal4f8ad172016-02-12 16:17:32 +05301369 }
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301370}