Uses of Interface
org.antlr.tool.ANTLRErrorListener
-
Packages that use ANTLRErrorListener Package Description org.antlr.mojo.antlr3 org.antlr.tool -
-
Uses of ANTLRErrorListener in org.antlr.mojo.antlr3
Classes in org.antlr.mojo.antlr3 that implement ANTLRErrorListener Modifier and Type Class Description classAntlr3ErrorLogThe Maven plexus container gives us a Log logging provider which we can use to install an error listener for the ANTLR tool to report errors by. -
Uses of ANTLRErrorListener in org.antlr.tool
Fields in org.antlr.tool declared as ANTLRErrorListener Modifier and Type Field Description (package private) static ANTLRErrorListenerErrorManager. theDefaultErrorListenerFields in org.antlr.tool with type parameters of type ANTLRErrorListener Modifier and Type Field Description private static java.util.Map<java.lang.Thread,ANTLRErrorListener>ErrorManager. threadToListenerMapEach thread might need it's own error listener; e.g., a GUI with multiple window frames holding multiple grammars.Methods in org.antlr.tool that return ANTLRErrorListener Modifier and Type Method Description static ANTLRErrorListenerErrorManager. getErrorListener()Methods in org.antlr.tool with parameters of type ANTLRErrorListener Modifier and Type Method Description static voidErrorManager. setErrorListener(ANTLRErrorListener listener)In general, you'll want all errors to go to a single spot.
-