Interface PathExpressionParserListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
PathExpressionParserBaseListener
public interface PathExpressionParserListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
PathExpressionParser.-
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byPathExpressionParser.array_index().voidEnter a parse tree produced byPathExpressionParser.id().voidEnter a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().voidExit a parse tree produced byPathExpressionParser.array_index().voidExit a parse tree produced byPathExpressionParser.id().voidExit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterPath
Enter a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().- Parameters:
ctx- the parse tree
-
exitPath
Exit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().- Parameters:
ctx- the parse tree
-
enterId
Enter a parse tree produced byPathExpressionParser.id().- Parameters:
ctx- the parse tree
-
exitId
Exit a parse tree produced byPathExpressionParser.id().- Parameters:
ctx- the parse tree
-
enterArray_index
Enter a parse tree produced byPathExpressionParser.array_index().- Parameters:
ctx- the parse tree
-
exitArray_index
Exit a parse tree produced byPathExpressionParser.array_index().- Parameters:
ctx- the parse tree
-