Interface PathExpressionParserListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
PathExpressionParserBaseListener
public interface PathExpressionParserListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byPathExpressionParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterArray_index(PathExpressionParser.Array_indexContext ctx)Enter a parse tree produced byPathExpressionParser.array_index().voidenterId(PathExpressionParser.IdContext ctx)Enter a parse tree produced byPathExpressionParser.id().voidenterPath(PathExpressionParser.PathContext ctx)Enter a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().voidexitArray_index(PathExpressionParser.Array_indexContext ctx)Exit a parse tree produced byPathExpressionParser.array_index().voidexitId(PathExpressionParser.IdContext ctx)Exit a parse tree produced byPathExpressionParser.id().voidexitPath(PathExpressionParser.PathContext ctx)Exit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().
-
-
-
Method Detail
-
enterPath
void enterPath(PathExpressionParser.PathContext ctx)
Enter a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().- Parameters:
ctx- the parse tree
-
exitPath
void exitPath(PathExpressionParser.PathContext ctx)
Exit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().- Parameters:
ctx- the parse tree
-
enterId
void enterId(PathExpressionParser.IdContext ctx)
Enter a parse tree produced byPathExpressionParser.id().- Parameters:
ctx- the parse tree
-
exitId
void exitId(PathExpressionParser.IdContext ctx)
Exit a parse tree produced byPathExpressionParser.id().- Parameters:
ctx- the parse tree
-
enterArray_index
void enterArray_index(PathExpressionParser.Array_indexContext ctx)
Enter a parse tree produced byPathExpressionParser.array_index().- Parameters:
ctx- the parse tree
-
exitArray_index
void exitArray_index(PathExpressionParser.Array_indexContext ctx)
Exit a parse tree produced byPathExpressionParser.array_index().- Parameters:
ctx- the parse tree
-
-