Package org.graphwalker.dsl.generator
Class GeneratorParserBaseListener
java.lang.Object
org.graphwalker.dsl.generator.GeneratorParserBaseListener
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener,GeneratorParserListener
- Direct Known Subclasses:
GeneratorLoader
This class provides an empty implementation of
GeneratorParserListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byGeneratorParser.andExpression().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) 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().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) 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().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
GeneratorParserBaseListener
public GeneratorParserBaseListener()
-
-
Method Details
-
enterParse
Enter a parse tree produced byGeneratorParser.parse().The default implementation does nothing.
- Specified by:
enterParsein interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
exitParse
Exit a parse tree produced byGeneratorParser.parse().The default implementation does nothing.
- Specified by:
exitParsein interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
enterGenerator
Enter a parse tree produced byGeneratorParser.generator().The default implementation does nothing.
- Specified by:
enterGeneratorin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
exitGenerator
Exit a parse tree produced byGeneratorParser.generator().The default implementation does nothing.
- Specified by:
exitGeneratorin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
enterLogicalExpression
Enter a parse tree produced byGeneratorParser.logicalExpression().The default implementation does nothing.
- Specified by:
enterLogicalExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
exitLogicalExpression
Exit a parse tree produced byGeneratorParser.logicalExpression().The default implementation does nothing.
- Specified by:
exitLogicalExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
enterAndExpression
Enter a parse tree produced byGeneratorParser.andExpression().The default implementation does nothing.
- Specified by:
enterAndExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
exitAndExpression
Exit a parse tree produced byGeneratorParser.andExpression().The default implementation does nothing.
- Specified by:
exitAndExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
enterOrExpression
Enter a parse tree produced byGeneratorParser.orExpression().The default implementation does nothing.
- Specified by:
enterOrExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
exitOrExpression
Exit a parse tree produced byGeneratorParser.orExpression().The default implementation does nothing.
- Specified by:
exitOrExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
enterPrimaryExpression
Enter a parse tree produced byGeneratorParser.primaryExpression().The default implementation does nothing.
- Specified by:
enterPrimaryExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
exitPrimaryExpression
Exit a parse tree produced byGeneratorParser.primaryExpression().The default implementation does nothing.
- Specified by:
exitPrimaryExpressionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
enterStopCondition
Enter a parse tree produced byGeneratorParser.stopCondition().The default implementation does nothing.
- Specified by:
enterStopConditionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
exitStopCondition
Exit a parse tree produced byGeneratorParser.stopCondition().The default implementation does nothing.
- Specified by:
exitStopConditionin interfaceGeneratorParserListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-