Uses of Interface
org.codehaus.commons.compiler.WarningHandler
-
Packages that use WarningHandler Package Description org.codehaus.commons.compiler This package declares interfaces for the implementation of anIExpressionEvaluator, anIScriptEvaluator, anIClassBodyEvaluatorand 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 WarningHandler in org.codehaus.commons.compiler
Methods in org.codehaus.commons.compiler with parameters of type WarningHandler Modifier and Type Method Description voidICookable. setWarningHandler(WarningHandler optionalWarningHandler)By default, warnings are discarded, but an application my install a customWarningHandler. -
Uses of WarningHandler in org.codehaus.commons.compiler.jdk
Methods in org.codehaus.commons.compiler.jdk with parameters of type WarningHandler Modifier and Type Method Description voidSimpleCompiler. setWarningHandler(WarningHandler optionalWarningHandler) -
Uses of WarningHandler in org.codehaus.janino
Classes in org.codehaus.janino that implement WarningHandler Modifier and Type Class Description static classCompiler.SimpleWarningHandlerPrints warnings to STDERR.classFilterWarningHandlerInvokes a delegate iff the handle of the warning matches one or more of a set ofStringPatterns.Methods in org.codehaus.janino with parameters of type WarningHandler Modifier and Type Method Description voidCompiler. setWarningHandler(WarningHandler optionalWarningHandler)By default, warnings are discarded, but an application my install a customWarningHandler.voidJavaSourceClassLoader. setWarningHandler(WarningHandler optionalWarningHandler)voidJavaSourceIClassLoader. setWarningHandler(WarningHandler optionalWarningHandler)voidParser. setWarningHandler(WarningHandler optionalWarningHandler)By default, warnings are discarded, but an application my install aWarningHandler.voidScanner. setWarningHandler(WarningHandler optionalWarningHandler)By default, warnings are discarded, but an application my install aWarningHandler.voidSimpleCompiler. setWarningHandler(WarningHandler optionalWarningHandler)voidUnitCompiler. setWarningHandler(WarningHandler optionalWarningHandler)By default, warnings are discarded, but an application my install a customWarningHandler.Constructors in org.codehaus.janino with parameters of type WarningHandler Constructor Description Compiler(ResourceFinder sourceFinder, IClassLoader iClassLoader, ResourceFinder classFileFinder, ResourceCreator classFileCreator, String optionalCharacterEncoding, boolean verbose, boolean debugSource, boolean debugLines, boolean debugVars, WarningHandler optionalWarningHandler)To mimic the behavior of JAVAC with a missing "-d" command line option, passCompiler.FIND_NEXT_TO_SOURCE_FILEas theclassFileResourceFinderandCompiler.CREATE_NEXT_TO_SOURCE_FILEas theclassFileResourceCreator.FilterWarningHandler(StringPattern[] handlePatterns, WarningHandler delegate)Popular values for thehandlePatternsparameter areStringPattern.PATTERNS_ALLandStringPattern.PATTERNS_NONE.
-