Package eu.simuline.relana.parser
Interface FormulaListener
-
- All Superinterfaces:
ParseTreeListener
- All Known Implementing Classes:
FormulaBaseListener
public interface FormulaListener extends ParseTreeListener
This interface defines a complete listener for a parse tree produced byFormulaParser
.
-
-
Method Summary
-
Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
enterFormula
void enterFormula(FormulaParser.FormulaContext ctx)
Enter a parse tree produced byFormulaParser.formula()
.- Parameters:
ctx
- the parse tree
-
exitFormula
void exitFormula(FormulaParser.FormulaContext ctx)
Exit a parse tree produced byFormulaParser.formula()
.- Parameters:
ctx
- the parse tree
-
enterConstFormula
void enterConstFormula(FormulaParser.ConstFormulaContext ctx)
Enter a parse tree produced byFormulaParser.constFormula()
.- Parameters:
ctx
- the parse tree
-
exitConstFormula
void exitConstFormula(FormulaParser.ConstFormulaContext ctx)
Exit a parse tree produced byFormulaParser.constFormula()
.- Parameters:
ctx
- the parse tree
-
enterVarFormula
void enterVarFormula(FormulaParser.VarFormulaContext ctx)
Enter a parse tree produced byFormulaParser.varFormula()
.- Parameters:
ctx
- the parse tree
-
exitVarFormula
void exitVarFormula(FormulaParser.VarFormulaContext ctx)
Exit a parse tree produced byFormulaParser.varFormula()
.- Parameters:
ctx
- the parse tree
-
enterCompFormula
void enterCompFormula(FormulaParser.CompFormulaContext ctx)
Enter a parse tree produced byFormulaParser.compFormula()
.- Parameters:
ctx
- the parse tree
-
exitCompFormula
void exitCompFormula(FormulaParser.CompFormulaContext ctx)
Exit a parse tree produced byFormulaParser.compFormula()
.- Parameters:
ctx
- the parse tree
-
enterAddFormula
void enterAddFormula(FormulaParser.AddFormulaContext ctx)
Enter a parse tree produced byFormulaParser.addFormula()
.- Parameters:
ctx
- the parse tree
-
exitAddFormula
void exitAddFormula(FormulaParser.AddFormulaContext ctx)
Exit a parse tree produced byFormulaParser.addFormula()
.- Parameters:
ctx
- the parse tree
-
enterPath
void enterPath(FormulaParser.PathContext ctx)
Enter a parse tree produced byFormulaParser.path
.- Parameters:
ctx
- the parse tree
-
exitPath
void exitPath(FormulaParser.PathContext ctx)
Exit a parse tree produced byFormulaParser.path
.- Parameters:
ctx
- the parse tree
-
-