Package org.graphwalker.dsl.generator
Interface GeneratorParserListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
GeneratorLoader,GeneratorParserBaseListener
public interface GeneratorParserListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
GeneratorParser.-
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byGeneratorParser.andExpression().voidEnter a parse tree produced byGeneratorParser.generator().voidEnter a parse tree produced byGeneratorParser.logicalExpression().voidEnter a parse tree produced byGeneratorParser.orExpression().voidEnter a parse tree produced byGeneratorParser.parse().voidEnter a parse tree produced byGeneratorParser.primaryExpression().voidEnter a parse tree produced byGeneratorParser.stopCondition().voidExit a parse tree produced byGeneratorParser.andExpression().voidExit a parse tree produced byGeneratorParser.generator().voidExit a parse tree produced byGeneratorParser.logicalExpression().voidExit a parse tree produced byGeneratorParser.orExpression().voidExit a parse tree produced byGeneratorParser.parse().voidExit a parse tree produced byGeneratorParser.primaryExpression().voidExit a parse tree produced byGeneratorParser.stopCondition().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterParse
Enter a parse tree produced byGeneratorParser.parse().- Parameters:
ctx- the parse tree
-
exitParse
Exit a parse tree produced byGeneratorParser.parse().- Parameters:
ctx- the parse tree
-
enterGenerator
Enter a parse tree produced byGeneratorParser.generator().- Parameters:
ctx- the parse tree
-
exitGenerator
Exit a parse tree produced byGeneratorParser.generator().- Parameters:
ctx- the parse tree
-
enterLogicalExpression
Enter a parse tree produced byGeneratorParser.logicalExpression().- Parameters:
ctx- the parse tree
-
exitLogicalExpression
Exit a parse tree produced byGeneratorParser.logicalExpression().- Parameters:
ctx- the parse tree
-
enterAndExpression
Enter a parse tree produced byGeneratorParser.andExpression().- Parameters:
ctx- the parse tree
-
exitAndExpression
Exit a parse tree produced byGeneratorParser.andExpression().- Parameters:
ctx- the parse tree
-
enterOrExpression
Enter a parse tree produced byGeneratorParser.orExpression().- Parameters:
ctx- the parse tree
-
exitOrExpression
Exit a parse tree produced byGeneratorParser.orExpression().- Parameters:
ctx- the parse tree
-
enterPrimaryExpression
Enter a parse tree produced byGeneratorParser.primaryExpression().- Parameters:
ctx- the parse tree
-
exitPrimaryExpression
Exit a parse tree produced byGeneratorParser.primaryExpression().- Parameters:
ctx- the parse tree
-
enterStopCondition
Enter a parse tree produced byGeneratorParser.stopCondition().- Parameters:
ctx- the parse tree
-
exitStopCondition
Exit a parse tree produced byGeneratorParser.stopCondition().- Parameters:
ctx- the parse tree
-