Class SearchBaseListener
- All Implemented Interfaces:
SearchListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class SearchBaseListener extends Object implements SearchListener
SearchListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors Constructor Description SearchBaseListener() -
Method Summary
Modifier and Type Method Description voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidenterField(SearchParser.FieldContext ctx)Enter a parse tree produced bySearchParser.field().voidenterGroup(SearchParser.GroupContext ctx)Enter a parse tree produced bySearchParser.group().voidenterNamed(SearchParser.NamedContext ctx)Enter a parse tree produced bySearchParser.named().voidenterNot(SearchParser.NotContext ctx)Enter a parse tree produced bySearchParser.not().voidenterOr(SearchParser.OrContext ctx)Enter a parse tree produced bySearchParser.or().voidenterStart(SearchParser.StartContext ctx)Enter a parse tree produced bySearchParser.start().voidenterTag(SearchParser.TagContext ctx)Enter a parse tree produced bySearchParser.tag().voidenterTerm(SearchParser.TermContext ctx)Enter a parse tree produced bySearchParser.term().voidenterWord(SearchParser.WordContext ctx)Enter a parse tree produced bySearchParser.word().voidenterWords(SearchParser.WordsContext ctx)Enter a parse tree produced bySearchParser.words().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidexitField(SearchParser.FieldContext ctx)Exit a parse tree produced bySearchParser.field().voidexitGroup(SearchParser.GroupContext ctx)Exit a parse tree produced bySearchParser.group().voidexitNamed(SearchParser.NamedContext ctx)Exit a parse tree produced bySearchParser.named().voidexitNot(SearchParser.NotContext ctx)Exit a parse tree produced bySearchParser.not().voidexitOr(SearchParser.OrContext ctx)Exit a parse tree produced bySearchParser.or().voidexitStart(SearchParser.StartContext ctx)Exit a parse tree produced bySearchParser.start().voidexitTag(SearchParser.TagContext ctx)Exit a parse tree produced bySearchParser.tag().voidexitTerm(SearchParser.TermContext ctx)Exit a parse tree produced bySearchParser.term().voidexitWord(SearchParser.WordContext ctx)Exit a parse tree produced bySearchParser.word().voidexitWords(SearchParser.WordsContext ctx)Exit a parse tree produced bySearchParser.words().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
SearchBaseListener
public SearchBaseListener()
-
-
Method Details
-
enterStart
Enter a parse tree produced bySearchParser.start().The default implementation does nothing.
- Specified by:
enterStartin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitStart
Exit a parse tree produced bySearchParser.start().The default implementation does nothing.
- Specified by:
exitStartin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterTerm
Enter a parse tree produced bySearchParser.term().The default implementation does nothing.
- Specified by:
enterTermin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitTerm
Exit a parse tree produced bySearchParser.term().The default implementation does nothing.
- Specified by:
exitTermin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterGroup
Enter a parse tree produced bySearchParser.group().The default implementation does nothing.
- Specified by:
enterGroupin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitGroup
Exit a parse tree produced bySearchParser.group().The default implementation does nothing.
- Specified by:
exitGroupin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterOr
Enter a parse tree produced bySearchParser.or().The default implementation does nothing.
- Specified by:
enterOrin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitOr
Exit a parse tree produced bySearchParser.or().The default implementation does nothing.
- Specified by:
exitOrin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterNot
Enter a parse tree produced bySearchParser.not().The default implementation does nothing.
- Specified by:
enterNotin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitNot
Exit a parse tree produced bySearchParser.not().The default implementation does nothing.
- Specified by:
exitNotin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterTag
Enter a parse tree produced bySearchParser.tag().The default implementation does nothing.
- Specified by:
enterTagin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitTag
Exit a parse tree produced bySearchParser.tag().The default implementation does nothing.
- Specified by:
exitTagin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterNamed
Enter a parse tree produced bySearchParser.named().The default implementation does nothing.
- Specified by:
enterNamedin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitNamed
Exit a parse tree produced bySearchParser.named().The default implementation does nothing.
- Specified by:
exitNamedin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterField
Enter a parse tree produced bySearchParser.field().The default implementation does nothing.
- Specified by:
enterFieldin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitField
Exit a parse tree produced bySearchParser.field().The default implementation does nothing.
- Specified by:
exitFieldin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterWord
Enter a parse tree produced bySearchParser.word().The default implementation does nothing.
- Specified by:
enterWordin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitWord
Exit a parse tree produced bySearchParser.word().The default implementation does nothing.
- Specified by:
exitWordin interfaceSearchListener- Parameters:
ctx- the parse tree
-
enterWords
Enter a parse tree produced bySearchParser.words().The default implementation does nothing.
- Specified by:
enterWordsin interfaceSearchListener- Parameters:
ctx- the parse tree
-
exitWords
Exit a parse tree produced bySearchParser.words().The default implementation does nothing.
- Specified by:
exitWordsin interfaceSearchListener- 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
-