public class MNetBaseListener extends Object implements MNetListener
MNetListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
MNetBaseListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
enterAnd(MNetParser.AndContext ctx)
Enter a parse tree produced by
MNetParser.and(). |
void |
enterAndExpr(MNetParser.AndExprContext ctx)
Enter a parse tree produced by the
andExpr
labeled alternative in MNetParser.expr(). |
void |
enterAssign(MNetParser.AssignContext ctx)
Enter a parse tree produced by
MNetParser.assign(). |
void |
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
enterModel(MNetParser.ModelContext ctx)
Enter a parse tree produced by
MNetParser.model(). |
void |
enterNot(MNetParser.NotContext ctx)
Enter a parse tree produced by
MNetParser.not(). |
void |
enterOr(MNetParser.OrContext ctx)
Enter a parse tree produced by
MNetParser.or(). |
void |
enterOrExpr(MNetParser.OrExprContext ctx)
Enter a parse tree produced by the
orExpr
labeled alternative in MNetParser.expr(). |
void |
enterSimpleExpr(MNetParser.SimpleExprContext ctx)
Enter a parse tree produced by the
simpleExpr
labeled alternative in MNetParser.expr(). |
void |
enterVal(MNetParser.ValContext ctx)
Enter a parse tree produced by
MNetParser.val(). |
void |
enterVar(MNetParser.VarContext ctx)
Enter a parse tree produced by
MNetParser.var(). |
void |
exitAnd(MNetParser.AndContext ctx)
Exit a parse tree produced by
MNetParser.and(). |
void |
exitAndExpr(MNetParser.AndExprContext ctx)
Exit a parse tree produced by the
andExpr
labeled alternative in MNetParser.expr(). |
void |
exitAssign(MNetParser.AssignContext ctx)
Exit a parse tree produced by
MNetParser.assign(). |
void |
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
exitModel(MNetParser.ModelContext ctx)
Exit a parse tree produced by
MNetParser.model(). |
void |
exitNot(MNetParser.NotContext ctx)
Exit a parse tree produced by
MNetParser.not(). |
void |
exitOr(MNetParser.OrContext ctx)
Exit a parse tree produced by
MNetParser.or(). |
void |
exitOrExpr(MNetParser.OrExprContext ctx)
Exit a parse tree produced by the
orExpr
labeled alternative in MNetParser.expr(). |
void |
exitSimpleExpr(MNetParser.SimpleExprContext ctx)
Exit a parse tree produced by the
simpleExpr
labeled alternative in MNetParser.expr(). |
void |
exitVal(MNetParser.ValContext ctx)
Exit a parse tree produced by
MNetParser.val(). |
void |
exitVar(MNetParser.VarContext ctx)
Exit a parse tree produced by
MNetParser.var(). |
void |
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) |
void |
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) |
public void enterAssign(MNetParser.AssignContext ctx)
MNetParser.assign().
The default implementation does nothing.
enterAssign in interface MNetListenerctx - the parse treepublic void exitAssign(MNetParser.AssignContext ctx)
MNetParser.assign().
The default implementation does nothing.
exitAssign in interface MNetListenerctx - the parse treepublic void enterModel(MNetParser.ModelContext ctx)
MNetParser.model().
The default implementation does nothing.
enterModel in interface MNetListenerctx - the parse treepublic void exitModel(MNetParser.ModelContext ctx)
MNetParser.model().
The default implementation does nothing.
exitModel in interface MNetListenerctx - the parse treepublic void enterSimpleExpr(MNetParser.SimpleExprContext ctx)
simpleExpr
labeled alternative in MNetParser.expr().
The default implementation does nothing.
enterSimpleExpr in interface MNetListenerctx - the parse treepublic void exitSimpleExpr(MNetParser.SimpleExprContext ctx)
simpleExpr
labeled alternative in MNetParser.expr().
The default implementation does nothing.
exitSimpleExpr in interface MNetListenerctx - the parse treepublic void enterOrExpr(MNetParser.OrExprContext ctx)
orExpr
labeled alternative in MNetParser.expr().
The default implementation does nothing.
enterOrExpr in interface MNetListenerctx - the parse treepublic void exitOrExpr(MNetParser.OrExprContext ctx)
orExpr
labeled alternative in MNetParser.expr().
The default implementation does nothing.
exitOrExpr in interface MNetListenerctx - the parse treepublic void enterAndExpr(MNetParser.AndExprContext ctx)
andExpr
labeled alternative in MNetParser.expr().
The default implementation does nothing.
enterAndExpr in interface MNetListenerctx - the parse treepublic void exitAndExpr(MNetParser.AndExprContext ctx)
andExpr
labeled alternative in MNetParser.expr().
The default implementation does nothing.
exitAndExpr in interface MNetListenerctx - the parse treepublic void enterAnd(MNetParser.AndContext ctx)
MNetParser.and().
The default implementation does nothing.
enterAnd in interface MNetListenerctx - the parse treepublic void exitAnd(MNetParser.AndContext ctx)
MNetParser.and().
The default implementation does nothing.
exitAnd in interface MNetListenerctx - the parse treepublic void enterOr(MNetParser.OrContext ctx)
MNetParser.or().
The default implementation does nothing.
enterOr in interface MNetListenerctx - the parse treepublic void exitOr(MNetParser.OrContext ctx)
MNetParser.or().
The default implementation does nothing.
exitOr in interface MNetListenerctx - the parse treepublic void enterNot(MNetParser.NotContext ctx)
MNetParser.not().
The default implementation does nothing.
enterNot in interface MNetListenerctx - the parse treepublic void exitNot(MNetParser.NotContext ctx)
MNetParser.not().
The default implementation does nothing.
exitNot in interface MNetListenerctx - the parse treepublic void enterVar(MNetParser.VarContext ctx)
MNetParser.var().
The default implementation does nothing.
enterVar in interface MNetListenerctx - the parse treepublic void exitVar(MNetParser.VarContext ctx)
MNetParser.var().
The default implementation does nothing.
exitVar in interface MNetListenerctx - the parse treepublic void enterVal(MNetParser.ValContext ctx)
MNetParser.val().
The default implementation does nothing.
enterVal in interface MNetListenerctx - the parse treepublic void exitVal(MNetParser.ValContext ctx)
MNetParser.val().
The default implementation does nothing.
exitVal in interface MNetListenerctx - 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.