public class PathExpressionParserBaseListener extends Object implements PathExpressionParserListener
PathExpressionParserListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
PathExpressionParserBaseListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
enterArray_index(PathExpressionParser.Array_indexContext ctx)
Enter a parse tree produced by
PathExpressionParser.array_index(). |
void |
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
enterId(PathExpressionParser.IdContext ctx)
Enter a parse tree produced by
PathExpressionParser.id(). |
void |
enterPath(PathExpressionParser.PathContext ctx)
Enter a parse tree produced by the
path
labeled alternative in PathExpressionParser.expr(). |
void |
exitArray_index(PathExpressionParser.Array_indexContext ctx)
Exit a parse tree produced by
PathExpressionParser.array_index(). |
void |
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) |
void |
exitId(PathExpressionParser.IdContext ctx)
Exit a parse tree produced by
PathExpressionParser.id(). |
void |
exitPath(PathExpressionParser.PathContext ctx)
Exit a parse tree produced by the
path
labeled alternative in PathExpressionParser.expr(). |
void |
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) |
void |
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) |
public void enterPath(PathExpressionParser.PathContext ctx)
path
labeled alternative in PathExpressionParser.expr().
The default implementation does nothing.
enterPath in interface PathExpressionParserListenerctx - the parse treepublic void exitPath(PathExpressionParser.PathContext ctx)
path
labeled alternative in PathExpressionParser.expr().
The default implementation does nothing.
exitPath in interface PathExpressionParserListenerctx - the parse treepublic void enterId(PathExpressionParser.IdContext ctx)
PathExpressionParser.id().
The default implementation does nothing.
enterId in interface PathExpressionParserListenerctx - the parse treepublic void exitId(PathExpressionParser.IdContext ctx)
PathExpressionParser.id().
The default implementation does nothing.
exitId in interface PathExpressionParserListenerctx - the parse treepublic void enterArray_index(PathExpressionParser.Array_indexContext ctx)
PathExpressionParser.array_index().
The default implementation does nothing.
enterArray_index in interface PathExpressionParserListenerctx - the parse treepublic void exitArray_index(PathExpressionParser.Array_indexContext ctx)
PathExpressionParser.array_index().
The default implementation does nothing.
exitArray_index in interface PathExpressionParserListenerctx - 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 © 2020. All rights reserved.