Package com.caplin.fxapi.generator
Interface SearchCriteriaListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
SearchCriteriaBaseListener
public interface SearchCriteriaListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
SearchCriteriaParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced bySearchCriteriaParser.comparator()
.void
Enter a parse tree produced bySearchCriteriaParser.expression()
.void
Enter a parse tree produced bySearchCriteriaParser.operator()
.void
Enter a parse tree produced bySearchCriteriaParser.searchCriteria()
.void
Exit a parse tree produced bySearchCriteriaParser.comparator()
.void
Exit a parse tree produced bySearchCriteriaParser.expression()
.void
Exit a parse tree produced bySearchCriteriaParser.operator()
.void
Exit a parse tree produced bySearchCriteriaParser.searchCriteria()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterSearchCriteria
Enter a parse tree produced bySearchCriteriaParser.searchCriteria()
.- Parameters:
ctx
- the parse tree
-
exitSearchCriteria
Exit a parse tree produced bySearchCriteriaParser.searchCriteria()
.- Parameters:
ctx
- the parse tree
-
enterExpression
Enter a parse tree produced bySearchCriteriaParser.expression()
.- Parameters:
ctx
- the parse tree
-
exitExpression
Exit a parse tree produced bySearchCriteriaParser.expression()
.- Parameters:
ctx
- the parse tree
-
enterComparator
Enter a parse tree produced bySearchCriteriaParser.comparator()
.- Parameters:
ctx
- the parse tree
-
exitComparator
Exit a parse tree produced bySearchCriteriaParser.comparator()
.- Parameters:
ctx
- the parse tree
-
enterOperator
Enter a parse tree produced bySearchCriteriaParser.operator()
.- Parameters:
ctx
- the parse tree
-
exitOperator
Exit a parse tree produced bySearchCriteriaParser.operator()
.- Parameters:
ctx
- the parse tree
-