public class FilterBaseListener extends Object implements FilterListener
FilterListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
FilterBaseListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
enterComparison(FilterParser.ComparisonContext ctx)
Enter a parse tree produced by
FilterParser.comparison(). |
void |
enterConstant(FilterParser.ConstantContext ctx)
Enter a parse tree produced by
FilterParser.constant(). |
void |
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
enterExp(FilterParser.ExpContext ctx)
Enter a parse tree produced by
FilterParser.exp(). |
void |
enterFactor(FilterParser.FactorContext ctx)
Enter a parse tree produced by
FilterParser.factor(). |
void |
enterTerm(FilterParser.TermContext ctx)
Enter a parse tree produced by
FilterParser.term(). |
void |
enterValue(FilterParser.ValueContext ctx)
Enter a parse tree produced by
FilterParser.value(). |
void |
exitComparison(FilterParser.ComparisonContext ctx)
Exit a parse tree produced by
FilterParser.comparison(). |
void |
exitConstant(FilterParser.ConstantContext ctx)
Exit a parse tree produced by
FilterParser.constant(). |
void |
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
exitExp(FilterParser.ExpContext ctx)
Exit a parse tree produced by
FilterParser.exp(). |
void |
exitFactor(FilterParser.FactorContext ctx)
Exit a parse tree produced by
FilterParser.factor(). |
void |
exitTerm(FilterParser.TermContext ctx)
Exit a parse tree produced by
FilterParser.term(). |
void |
exitValue(FilterParser.ValueContext ctx)
Exit a parse tree produced by
FilterParser.value(). |
void |
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) |
void |
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) |
public void enterComparison(@NotNull
FilterParser.ComparisonContext ctx)
FilterParser.comparison().
The default implementation does nothing.
enterComparison in interface FilterListenerctx - the parse treepublic void exitComparison(@NotNull
FilterParser.ComparisonContext ctx)
FilterParser.comparison().
The default implementation does nothing.
exitComparison in interface FilterListenerctx - the parse treepublic void enterConstant(@NotNull
FilterParser.ConstantContext ctx)
FilterParser.constant().
The default implementation does nothing.
enterConstant in interface FilterListenerctx - the parse treepublic void exitConstant(@NotNull
FilterParser.ConstantContext ctx)
FilterParser.constant().
The default implementation does nothing.
exitConstant in interface FilterListenerctx - the parse treepublic void enterTerm(@NotNull
FilterParser.TermContext ctx)
FilterParser.term().
The default implementation does nothing.
enterTerm in interface FilterListenerctx - the parse treepublic void exitTerm(@NotNull
FilterParser.TermContext ctx)
FilterParser.term().
The default implementation does nothing.
exitTerm in interface FilterListenerctx - the parse treepublic void enterExp(@NotNull
FilterParser.ExpContext ctx)
FilterParser.exp().
The default implementation does nothing.
enterExp in interface FilterListenerctx - the parse treepublic void exitExp(@NotNull
FilterParser.ExpContext ctx)
FilterParser.exp().
The default implementation does nothing.
exitExp in interface FilterListenerctx - the parse treepublic void enterFactor(@NotNull
FilterParser.FactorContext ctx)
FilterParser.factor().
The default implementation does nothing.
enterFactor in interface FilterListenerctx - the parse treepublic void exitFactor(@NotNull
FilterParser.FactorContext ctx)
FilterParser.factor().
The default implementation does nothing.
exitFactor in interface FilterListenerctx - the parse treepublic void enterValue(@NotNull
FilterParser.ValueContext ctx)
FilterParser.value().
The default implementation does nothing.
enterValue in interface FilterListenerctx - the parse treepublic void exitValue(@NotNull
FilterParser.ValueContext ctx)
FilterParser.value().
The default implementation does nothing.
exitValue in interface FilterListenerctx - the parse treepublic void enterEveryRule(@NotNull
org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
enterEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void exitEveryRule(@NotNull
org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
exitEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitTerminal(@NotNull
org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
visitTerminal in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitErrorNode(@NotNull
org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
visitErrorNode in interface org.antlr.v4.runtime.tree.ParseTreeListenerCopyright © 2020. All rights reserved.