Uses of Interface
org.antlr.v4.runtime.tree.ParseTreeListener
-
Packages that use ParseTreeListener Package Description org.antlr.v4.runtime org.antlr.v4.runtime.tree -
-
Uses of ParseTreeListener in org.antlr.v4.runtime
Classes in org.antlr.v4.runtime that implement ParseTreeListener Modifier and Type Class Description class
Parser.TraceListener
static class
Parser.TrimToSizeListener
Fields in org.antlr.v4.runtime with type parameters of type ParseTreeListener Modifier and Type Field Description protected List<ParseTreeListener>
Parser. _parseListeners
The list ofParseTreeListener
listeners registered to receive events during the parse.Methods in org.antlr.v4.runtime that return types with arguments of type ParseTreeListener Modifier and Type Method Description List<ParseTreeListener>
Parser. getParseListeners()
Methods in org.antlr.v4.runtime with parameters of type ParseTreeListener Modifier and Type Method Description void
Parser. addParseListener(ParseTreeListener listener)
Registerslistener
to receive events during the parsing process.void
ParserRuleContext. enterRule(ParseTreeListener listener)
void
ParserRuleContext. exitRule(ParseTreeListener listener)
void
Parser. removeParseListener(ParseTreeListener listener)
Removelistener
from the list of parse listeners. -
Uses of ParseTreeListener in org.antlr.v4.runtime.tree
Methods in org.antlr.v4.runtime.tree with parameters of type ParseTreeListener Modifier and Type Method Description protected void
ParseTreeWalker. enterRule(ParseTreeListener listener, RuleNode r)
The discovery of a rule node, involves sending two events: the genericenterEveryRule(org.antlr.v4.runtime.ParserRuleContext)
and aRuleContext
-specific event.protected void
ParseTreeWalker. exitRule(ParseTreeListener listener, RuleNode r)
void
IterativeParseTreeWalker. walk(ParseTreeListener listener, ParseTree t)
void
ParseTreeWalker. walk(ParseTreeListener listener, ParseTree t)
-