Interface SituationActionListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
SituationActionBaseListener
public interface SituationActionListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
SituationActionParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced bySituationActionParser.action()
.void
Enter a parse tree produced by theAnd
labeled alternative inSituationActionParser.situation()
.void
Enter a parse tree produced bySituationActionParser.direction()
.void
Enter a parse tree produced by theOr
labeled alternative inSituationActionParser.situation()
.void
Enter a parse tree produced by theParens
labeled alternative inSituationActionParser.situation()
.void
Enter a parse tree produced bySituationActionParser.program()
.void
Enter a parse tree produced bySituationActionParser.sa_rule()
.void
Enter a parse tree produced by theSingleTerm
labeled alternative inSituationActionParser.situation()
.void
Enter a parse tree produced bySituationActionParser.term()
.void
Exit a parse tree produced bySituationActionParser.action()
.void
Exit a parse tree produced by theAnd
labeled alternative inSituationActionParser.situation()
.void
Exit a parse tree produced bySituationActionParser.direction()
.void
Exit a parse tree produced by theOr
labeled alternative inSituationActionParser.situation()
.void
Exit a parse tree produced by theParens
labeled alternative inSituationActionParser.situation()
.void
Exit a parse tree produced bySituationActionParser.program()
.void
Exit a parse tree produced bySituationActionParser.sa_rule()
.void
Exit a parse tree produced by theSingleTerm
labeled alternative inSituationActionParser.situation()
.void
Exit a parse tree produced bySituationActionParser.term()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterSingleTerm
Enter a parse tree produced by theSingleTerm
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
exitSingleTerm
Exit a parse tree produced by theSingleTerm
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
enterOr
Enter a parse tree produced by theOr
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
exitOr
Exit a parse tree produced by theOr
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
enterParens
Enter a parse tree produced by theParens
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
exitParens
Exit a parse tree produced by theParens
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
enterAnd
Enter a parse tree produced by theAnd
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
exitAnd
Exit a parse tree produced by theAnd
labeled alternative inSituationActionParser.situation()
.- Parameters:
ctx
- the parse tree
-
enterAction
Enter a parse tree produced bySituationActionParser.action()
.- Parameters:
ctx
- the parse tree
-
exitAction
Exit a parse tree produced bySituationActionParser.action()
.- Parameters:
ctx
- the parse tree
-
enterTerm
Enter a parse tree produced bySituationActionParser.term()
.- Parameters:
ctx
- the parse tree
-
exitTerm
Exit a parse tree produced bySituationActionParser.term()
.- Parameters:
ctx
- the parse tree
-
enterProgram
Enter a parse tree produced bySituationActionParser.program()
.- Parameters:
ctx
- the parse tree
-
exitProgram
Exit a parse tree produced bySituationActionParser.program()
.- Parameters:
ctx
- the parse tree
-
enterSa_rule
Enter a parse tree produced bySituationActionParser.sa_rule()
.- Parameters:
ctx
- the parse tree
-
exitSa_rule
Exit a parse tree produced bySituationActionParser.sa_rule()
.- Parameters:
ctx
- the parse tree
-
enterDirection
Enter a parse tree produced bySituationActionParser.direction()
.- Parameters:
ctx
- the parse tree
-
exitDirection
Exit a parse tree produced bySituationActionParser.direction()
.- Parameters:
ctx
- the parse tree
-