Uses of Interface
org.codehaus.commons.compiler.ErrorHandler
-
Packages that use ErrorHandler Package Description org.codehaus.commons.compiler This package declares interfaces for the implementation of anIExpressionEvaluator
, anIScriptEvaluator
, anIClassBodyEvaluator
and anISimpleCompiler
.org.codehaus.commons.compiler.jdk Main package of the plugin.org.codehaus.janino The classes in this package pose the core of the Janino JavaTM compiler. -
-
Uses of ErrorHandler in org.codehaus.commons.compiler
Methods in org.codehaus.commons.compiler with parameters of type ErrorHandler Modifier and Type Method Description void
ICookable. setCompileErrorHandler(ErrorHandler optionalCompileErrorHandler)
By default,CompileException
s are thrown on compile errors, but an application my install its ownErrorHandler
. -
Uses of ErrorHandler in org.codehaus.commons.compiler.jdk
Fields in org.codehaus.commons.compiler.jdk declared as ErrorHandler Modifier and Type Field Description private ErrorHandler
SimpleCompiler. optionalCompileErrorHandler
Methods in org.codehaus.commons.compiler.jdk with parameters of type ErrorHandler Modifier and Type Method Description void
SimpleCompiler. setCompileErrorHandler(ErrorHandler optionalCompileErrorHandler)
-
Uses of ErrorHandler in org.codehaus.janino
Fields in org.codehaus.janino declared as ErrorHandler Modifier and Type Field Description private ErrorHandler
Compiler. optionalCompileErrorHandler
private ErrorHandler
JavaSourceIClassLoader. optionalCompileErrorHandler
private ErrorHandler
SimpleCompiler. optionalCompileErrorHandler
private ErrorHandler
UnitCompiler. optionalCompileErrorHandler
Methods in org.codehaus.janino with parameters of type ErrorHandler Modifier and Type Method Description void
Compiler. setCompileErrorHandler(ErrorHandler optionalCompileErrorHandler)
Install a customErrorHandler
.void
JavaSourceClassLoader. setCompileErrorHandler(ErrorHandler optionalCompileErrorHandler)
void
JavaSourceIClassLoader. setCompileErrorHandler(ErrorHandler optionalCompileErrorHandler)
void
SimpleCompiler. setCompileErrorHandler(ErrorHandler optionalCompileErrorHandler)
void
UnitCompiler. setCompileErrorHandler(ErrorHandler optionalCompileErrorHandler)
By default,CompileException
s are thrown on compile errors, but an application my install its own (thread-local)ErrorHandler
.
-