blob: 2488b4d22e70462a86677d3778b114899d28da84 [file] [log] [blame]
Vidyashree Rama92fc5562016-02-12 18:44:12 +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.listeners;
18
19import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
20import org.onosproject.yangutils.parser.impl.TreeWalkListener;
21
22/*
23 * Reference: RFC6020 and YANG ANTLR Grammar
24 *
25 * ABNF grammar as per RFC6020
26 * type-stmt = type-keyword sep identifier-ref-arg-str optsep
27 * (";" /
28 * "{" stmtsep
29 * type-body-stmts
30 * "}")
31 *
32 * ANTLR grammar rule
33 * typeStatement : TYPE_KEYWORD string (STMTEND | LEFT_CURLY_BRACE typeBodyStatements RIGHT_CURLY_BRACE);
34 */
35
36/**
37 * Implements listener based call back function corresponding to the "type"
38 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
39 */
40public final class TypeListener {
41
42 /**
43 * Creates a new type listener.
44 */
45 private TypeListener() {
46 }
47
48 /**
49 * It is called when parser receives an input matching the grammar
50 * rule (type), performs validation and updates the data model
51 * tree.
52 *
53 * @param listener listener's object.
54 * @param ctx context object of the grammar rule.
55 */
56 public static void processTypeEntry(TreeWalkListener listener,
57 GeneratedYangParser.TypeStatementContext ctx) {
58 // TODO method implementation
59 }
60
61 /**
62 * It is called when parser exits from grammar rule (type), it performs
63 * validation and updates the data model tree.
64 *
65 * @param listener listener's object.
66 * @param ctx context object of the grammar rule.
67 */
68 public static void processTypeExit(TreeWalkListener listener,
69 GeneratedYangParser.TypeStatementContext ctx) {
70 // TODO method implementation
71 }
72}