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, anIClassBodyEvaluatorand anISimpleCompiler.org.codehaus.commons.compiler.jdk An implementation of theorg.codehaus.commons.compilerAPI 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 ErrorHandlerAbstractCompiler. compileErrorHandlerStores the value configured withAbstractCompiler.setCompileErrorHandler(ErrorHandler).Methods in org.codehaus.commons.compiler with parameters of type ErrorHandler Modifier and Type Method Description voidAbstractCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidIClassBodyEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)Installs anErrorHandlerwhich is invoked during compilation on each error.voidICompiler. setCompileErrorHandler(ErrorHandler errorHandler)Installs anErrorHandlerwhich is invoked during compilation on each error.voidIExpressionEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)Installs anErrorHandlerwhich is invoked during compilation on each error.voidIScriptEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)Installs anErrorHandlerwhich is invoked during compilation on each error.voidISimpleCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)Installs anErrorHandlerwhich is invoked during compilation on each error. -
Uses of ErrorHandler in org.codehaus.commons.compiler.jdk
Methods in org.codehaus.commons.compiler.jdk with parameters of type ErrorHandler Modifier and Type Method Description (package private) static voidCompiler. compile(javax.tools.JavaCompiler compiler, java.util.List<java.lang.String> options, java.util.Collection<javax.tools.JavaFileObject> sourceFileObjects, javax.tools.JavaFileManager fileManager, ErrorHandler compileErrorHandler, WarningHandler warningHandler, java.util.SortedSet<Location> offsets)Compiles on theJavaFileManager/JavaFileObjectlevel.(package private) static voidCompiler. compile(javax.tools.JavaCompiler compiler, java.util.List<java.lang.String> options, ResourceFinder sourceFinder, java.nio.charset.Charset sourceFileCharset, ResourceFinder classFileFinder, ResourceCreator classFileCreator, Resource[] sourceFiles, ErrorHandler compileErrorHandler, WarningHandler warningHandler, java.util.SortedSet<Location> offsets)voidClassBodyEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidExpressionEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidScriptEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidSimpleCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler) -
Uses of ErrorHandler in org.codehaus.janino
Fields in org.codehaus.janino declared as ErrorHandler Modifier and Type Field Description private ErrorHandlerJavaSourceIClassLoader. compileErrorHandlerprivate ErrorHandlerSimpleCompiler. compileErrorHandlerprivate ErrorHandlerUnitCompiler. compileErrorHandlerMethods in org.codehaus.janino with parameters of type ErrorHandler Modifier and Type Method Description voidClassBodyEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidExpressionEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidJavaSourceClassLoader. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidJavaSourceIClassLoader. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidScriptEvaluator. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidSimpleCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)voidUnitCompiler. setCompileErrorHandler(ErrorHandler compileErrorHandler)By default,CompileExceptions are thrown on compile errors, but an application my install its own (thread-local)ErrorHandler.
-