Interface YangStatementParserVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
YangStatementParserBaseVisitor
public interface YangStatementParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced byYangStatementParser
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
visitArgument(YangStatementParser.ArgumentContext ctx)
Visit a parse tree produced byYangStatementParser.argument()
.T
visitKeyword(YangStatementParser.KeywordContext ctx)
Visit a parse tree produced byYangStatementParser.keyword()
.T
visitStatement(YangStatementParser.StatementContext ctx)
Visit a parse tree produced byYangStatementParser.statement()
.
-
-
-
Method Detail
-
visitStatement
T visitStatement(YangStatementParser.StatementContext ctx)
Visit a parse tree produced byYangStatementParser.statement()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitKeyword
T visitKeyword(YangStatementParser.KeywordContext ctx)
Visit a parse tree produced byYangStatementParser.keyword()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArgument
T visitArgument(YangStatementParser.ArgumentContext ctx)
Visit a parse tree produced byYangStatementParser.argument()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-