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 An implementation of theorg.codehaus.commons.compiler
API that uses the "JAVAC" Java compiler that is part of the "Java Development Kit" (JDK).org.codehaus.janino The core of the Janino Java compiler. -
-
Uses of ErrorHandler in org.codehaus.commons.compiler
Fields in org.codehaus.commons.compiler declared as ErrorHandler Modifier and Type Field Description protected ErrorHandler
AbstractCompiler. compileErrorHandler
Stores the value configured withAbstractCompiler.setCompileErrorHandler(ErrorHandler)
.Methods in org.codehaus.commons.compiler with parameters of type ErrorHandler Modifier and Type Method Description void
AbstractCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
IClassBodyEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
By default,CompileException
s are thrown on compile errors, but an application my install its ownErrorHandler
.void
ICompiler. setCompileErrorHandler(ErrorHandler errorHandler)
By default,CompileException
s are thrown on compile errors, but an application my install its ownErrorHandler
.void
IExpressionEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
By default,CompileException
s are thrown on compile errors, but an application my install its ownErrorHandler
.void
IScriptEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
By default,CompileException
s are thrown on compile errors, but an application my install its ownErrorHandler
.void
ISimpleCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)
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. compileErrorHandler
Methods in org.codehaus.commons.compiler.jdk with parameters of type ErrorHandler Modifier and Type Method Description void
ClassBodyEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
ExpressionEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
ScriptEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
SimpleCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)
-
Uses of ErrorHandler in org.codehaus.janino
Fields in org.codehaus.janino declared as ErrorHandler Modifier and Type Field Description private ErrorHandler
JavaSourceIClassLoader. compileErrorHandler
private ErrorHandler
SimpleCompiler. compileErrorHandler
private ErrorHandler
UnitCompiler. compileErrorHandler
Methods in org.codehaus.janino with parameters of type ErrorHandler Modifier and Type Method Description void
ClassBodyEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
ExpressionEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
JavaSourceClassLoader. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
JavaSourceIClassLoader. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
ScriptEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
SimpleCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)
void
UnitCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)
By default,CompileException
s are thrown on compile errors, but an application my install its own (thread-local)ErrorHandler
.
-