Interface SearchListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
SearchBaseListener
public interface SearchListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced bySearchParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterAtomSearch(SearchParser.AtomSearchContext ctx)Enter a parse tree produced by theatomSearchlabeled alternative inSearchParser.search().voidenterCriteria(SearchParser.CriteriaContext ctx)Enter a parse tree produced bySearchParser.criteria().voidenterInput(SearchParser.InputContext ctx)Enter a parse tree produced bySearchParser.input().voidenterKey(SearchParser.KeyContext ctx)Enter a parse tree produced bySearchParser.key().voidenterOp(SearchParser.OpContext ctx)Enter a parse tree produced bySearchParser.op().voidenterOpSearch(SearchParser.OpSearchContext ctx)Enter a parse tree produced by theopSearchlabeled alternative inSearchParser.search().voidenterPrioritySearch(SearchParser.PrioritySearchContext ctx)Enter a parse tree produced by theprioritySearchlabeled alternative inSearchParser.search().voidenterValue(SearchParser.ValueContext ctx)Enter a parse tree produced bySearchParser.value().voidexitAtomSearch(SearchParser.AtomSearchContext ctx)Exit a parse tree produced by theatomSearchlabeled alternative inSearchParser.search().voidexitCriteria(SearchParser.CriteriaContext ctx)Exit a parse tree produced bySearchParser.criteria().voidexitInput(SearchParser.InputContext ctx)Exit a parse tree produced bySearchParser.input().voidexitKey(SearchParser.KeyContext ctx)Exit a parse tree produced bySearchParser.key().voidexitOp(SearchParser.OpContext ctx)Exit a parse tree produced bySearchParser.op().voidexitOpSearch(SearchParser.OpSearchContext ctx)Exit a parse tree produced by theopSearchlabeled alternative inSearchParser.search().voidexitPrioritySearch(SearchParser.PrioritySearchContext ctx)Exit a parse tree produced by theprioritySearchlabeled alternative inSearchParser.search().voidexitValue(SearchParser.ValueContext ctx)Exit a parse tree produced bySearchParser.value().
-
-
-
Method Detail
-
enterInput
void enterInput(SearchParser.InputContext ctx)
Enter a parse tree produced bySearchParser.input().- Parameters:
ctx- the parse tree
-
exitInput
void exitInput(SearchParser.InputContext ctx)
Exit a parse tree produced bySearchParser.input().- Parameters:
ctx- the parse tree
-
enterOpSearch
void enterOpSearch(SearchParser.OpSearchContext ctx)
Enter a parse tree produced by theopSearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree
-
exitOpSearch
void exitOpSearch(SearchParser.OpSearchContext ctx)
Exit a parse tree produced by theopSearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree
-
enterAtomSearch
void enterAtomSearch(SearchParser.AtomSearchContext ctx)
Enter a parse tree produced by theatomSearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree
-
exitAtomSearch
void exitAtomSearch(SearchParser.AtomSearchContext ctx)
Exit a parse tree produced by theatomSearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree
-
enterPrioritySearch
void enterPrioritySearch(SearchParser.PrioritySearchContext ctx)
Enter a parse tree produced by theprioritySearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree
-
exitPrioritySearch
void exitPrioritySearch(SearchParser.PrioritySearchContext ctx)
Exit a parse tree produced by theprioritySearchlabeled alternative inSearchParser.search().- Parameters:
ctx- the parse tree
-
enterCriteria
void enterCriteria(SearchParser.CriteriaContext ctx)
Enter a parse tree produced bySearchParser.criteria().- Parameters:
ctx- the parse tree
-
exitCriteria
void exitCriteria(SearchParser.CriteriaContext ctx)
Exit a parse tree produced bySearchParser.criteria().- Parameters:
ctx- the parse tree
-
enterKey
void enterKey(SearchParser.KeyContext ctx)
Enter a parse tree produced bySearchParser.key().- Parameters:
ctx- the parse tree
-
exitKey
void exitKey(SearchParser.KeyContext ctx)
Exit a parse tree produced bySearchParser.key().- Parameters:
ctx- the parse tree
-
enterValue
void enterValue(SearchParser.ValueContext ctx)
Enter a parse tree produced bySearchParser.value().- Parameters:
ctx- the parse tree
-
exitValue
void exitValue(SearchParser.ValueContext ctx)
Exit a parse tree produced bySearchParser.value().- Parameters:
ctx- the parse tree
-
enterOp
void enterOp(SearchParser.OpContext ctx)
Enter a parse tree produced bySearchParser.op().- Parameters:
ctx- the parse tree
-
exitOp
void exitOp(SearchParser.OpContext ctx)
Exit a parse tree produced bySearchParser.op().- Parameters:
ctx- the parse tree
-
-