public class BNetBaseListener extends Object implements BNetListener
BNetListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
BNetBaseListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
enterAnd(BNetParser.AndContext ctx)
Enter a parse tree produced by
BNetParser.and(). |
void |
enterAndExpr(BNetParser.AndExprContext ctx)
Enter a parse tree produced by the
andExpr
labeled alternative in BNetParser.expr(). |
void |
enterAssign(BNetParser.AssignContext ctx)
Enter a parse tree produced by
BNetParser.assign(). |
void |
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
enterHeader(BNetParser.HeaderContext ctx)
Enter a parse tree produced by
BNetParser.header(). |
void |
enterModel(BNetParser.ModelContext ctx)
Enter a parse tree produced by
BNetParser.model(). |
void |
enterNot(BNetParser.NotContext ctx)
Enter a parse tree produced by
BNetParser.not(). |
void |
enterOr(BNetParser.OrContext ctx)
Enter a parse tree produced by
BNetParser.or(). |
void |
enterOrExpr(BNetParser.OrExprContext ctx)
Enter a parse tree produced by the
orExpr
labeled alternative in BNetParser.expr(). |
void |
enterSimpleExpr(BNetParser.SimpleExprContext ctx)
Enter a parse tree produced by the
simpleExpr
labeled alternative in BNetParser.expr(). |
void |
enterVal(BNetParser.ValContext ctx)
Enter a parse tree produced by
BNetParser.val(). |
void |
enterVar(BNetParser.VarContext ctx)
Enter a parse tree produced by
BNetParser.var(). |
void |
exitAnd(BNetParser.AndContext ctx)
Exit a parse tree produced by
BNetParser.and(). |
void |
exitAndExpr(BNetParser.AndExprContext ctx)
Exit a parse tree produced by the
andExpr
labeled alternative in BNetParser.expr(). |
void |
exitAssign(BNetParser.AssignContext ctx)
Exit a parse tree produced by
BNetParser.assign(). |
void |
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
exitHeader(BNetParser.HeaderContext ctx)
Exit a parse tree produced by
BNetParser.header(). |
void |
exitModel(BNetParser.ModelContext ctx)
Exit a parse tree produced by
BNetParser.model(). |
void |
exitNot(BNetParser.NotContext ctx)
Exit a parse tree produced by
BNetParser.not(). |
void |
exitOr(BNetParser.OrContext ctx)
Exit a parse tree produced by
BNetParser.or(). |
void |
exitOrExpr(BNetParser.OrExprContext ctx)
Exit a parse tree produced by the
orExpr
labeled alternative in BNetParser.expr(). |
void |
exitSimpleExpr(BNetParser.SimpleExprContext ctx)
Exit a parse tree produced by the
simpleExpr
labeled alternative in BNetParser.expr(). |
void |
exitVal(BNetParser.ValContext ctx)
Exit a parse tree produced by
BNetParser.val(). |
void |
exitVar(BNetParser.VarContext ctx)
Exit a parse tree produced by
BNetParser.var(). |
void |
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) |
void |
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) |
public void enterHeader(BNetParser.HeaderContext ctx)
BNetParser.header().
The default implementation does nothing.
enterHeader in interface BNetListenerctx - the parse treepublic void exitHeader(BNetParser.HeaderContext ctx)
BNetParser.header().
The default implementation does nothing.
exitHeader in interface BNetListenerctx - the parse treepublic void enterAssign(BNetParser.AssignContext ctx)
BNetParser.assign().
The default implementation does nothing.
enterAssign in interface BNetListenerctx - the parse treepublic void exitAssign(BNetParser.AssignContext ctx)
BNetParser.assign().
The default implementation does nothing.
exitAssign in interface BNetListenerctx - the parse treepublic void enterModel(BNetParser.ModelContext ctx)
BNetParser.model().
The default implementation does nothing.
enterModel in interface BNetListenerctx - the parse treepublic void exitModel(BNetParser.ModelContext ctx)
BNetParser.model().
The default implementation does nothing.
exitModel in interface BNetListenerctx - the parse treepublic void enterSimpleExpr(BNetParser.SimpleExprContext ctx)
simpleExpr
labeled alternative in BNetParser.expr().
The default implementation does nothing.
enterSimpleExpr in interface BNetListenerctx - the parse treepublic void exitSimpleExpr(BNetParser.SimpleExprContext ctx)
simpleExpr
labeled alternative in BNetParser.expr().
The default implementation does nothing.
exitSimpleExpr in interface BNetListenerctx - the parse treepublic void enterOrExpr(BNetParser.OrExprContext ctx)
orExpr
labeled alternative in BNetParser.expr().
The default implementation does nothing.
enterOrExpr in interface BNetListenerctx - the parse treepublic void exitOrExpr(BNetParser.OrExprContext ctx)
orExpr
labeled alternative in BNetParser.expr().
The default implementation does nothing.
exitOrExpr in interface BNetListenerctx - the parse treepublic void enterAndExpr(BNetParser.AndExprContext ctx)
andExpr
labeled alternative in BNetParser.expr().
The default implementation does nothing.
enterAndExpr in interface BNetListenerctx - the parse treepublic void exitAndExpr(BNetParser.AndExprContext ctx)
andExpr
labeled alternative in BNetParser.expr().
The default implementation does nothing.
exitAndExpr in interface BNetListenerctx - the parse treepublic void enterAnd(BNetParser.AndContext ctx)
BNetParser.and().
The default implementation does nothing.
enterAnd in interface BNetListenerctx - the parse treepublic void exitAnd(BNetParser.AndContext ctx)
BNetParser.and().
The default implementation does nothing.
exitAnd in interface BNetListenerctx - the parse treepublic void enterOr(BNetParser.OrContext ctx)
BNetParser.or().
The default implementation does nothing.
enterOr in interface BNetListenerctx - the parse treepublic void exitOr(BNetParser.OrContext ctx)
BNetParser.or().
The default implementation does nothing.
exitOr in interface BNetListenerctx - the parse treepublic void enterNot(BNetParser.NotContext ctx)
BNetParser.not().
The default implementation does nothing.
enterNot in interface BNetListenerctx - the parse treepublic void exitNot(BNetParser.NotContext ctx)
BNetParser.not().
The default implementation does nothing.
exitNot in interface BNetListenerctx - the parse treepublic void enterVar(BNetParser.VarContext ctx)
BNetParser.var().
The default implementation does nothing.
enterVar in interface BNetListenerctx - the parse treepublic void exitVar(BNetParser.VarContext ctx)
BNetParser.var().
The default implementation does nothing.
exitVar in interface BNetListenerctx - the parse treepublic void enterVal(BNetParser.ValContext ctx)
BNetParser.val().
The default implementation does nothing.
enterVal in interface BNetListenerctx - the parse treepublic void exitVal(BNetParser.ValContext ctx)
BNetParser.val().
The default implementation does nothing.
exitVal in interface BNetListenerctx - the parse treepublic void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
enterEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
exitEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
visitTerminal in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
visitErrorNode in interface org.antlr.v4.runtime.tree.ParseTreeListenerCopyright © 2012–2020. All rights reserved.