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 classParser.TraceListenerstatic classParser.TrimToSizeListenerFields in org.antlr.v4.runtime with type parameters of type ParseTreeListener Modifier and Type Field Description protected java.util.List<ParseTreeListener>Parser. _parseListenersThe list ofParseTreeListenerlisteners 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 java.util.List<ParseTreeListener>Parser. getParseListeners()Methods in org.antlr.v4.runtime with parameters of type ParseTreeListener Modifier and Type Method Description voidParser. addParseListener(ParseTreeListener listener)Registerslistenerto receive events during the parsing process.voidParserRuleContext. enterRule(ParseTreeListener listener)voidParserRuleContext. exitRule(ParseTreeListener listener)voidParser. removeParseListener(ParseTreeListener listener)Removelistenerfrom 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 voidParseTreeWalker. 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 voidParseTreeWalker. exitRule(ParseTreeListener listener, RuleNode r)voidIterativeParseTreeWalker. walk(ParseTreeListener listener, ParseTree t)voidParseTreeWalker. walk(ParseTreeListener listener, ParseTree t)
-