Package antlr.debug
Interface ParserMatchListener
-
- All Superinterfaces:
java.util.EventListener,ListenerBase
- All Known Subinterfaces:
ParserController,ParserListener
- All Known Implementing Classes:
ParserAdapter,ParserMatchAdapter,ParserReporter
public interface ParserMatchListener extends ListenerBase
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidparserMatch(ParserMatchEvent e)voidparserMatchNot(ParserMatchEvent e)voidparserMismatch(ParserMatchEvent e)voidparserMismatchNot(ParserMatchEvent e)-
Methods inherited from interface antlr.debug.ListenerBase
doneParsing, refresh
-
-
-
-
Method Detail
-
parserMatch
void parserMatch(ParserMatchEvent e)
-
parserMatchNot
void parserMatchNot(ParserMatchEvent e)
-
parserMismatch
void parserMismatch(ParserMatchEvent e)
-
parserMismatchNot
void parserMismatchNot(ParserMatchEvent e)
-
-