Uses of Interface
org.codehaus.commons.compiler.ICompilerFactory
-
Packages that use ICompilerFactory 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 ICompilerFactory in org.codehaus.commons.compiler
Classes in org.codehaus.commons.compiler that implement ICompilerFactory Modifier and Type Class Description class
AbstractCompilerFactory
Base class for a simpleICompilerFactory
.Methods in org.codehaus.commons.compiler that return ICompilerFactory Modifier and Type Method Description static ICompilerFactory[]
CompilerFactoryFactory. getAllCompilerFactories()
Deprecated.static ICompilerFactory[]
CompilerFactoryFactory. getAllCompilerFactories(ClassLoader classLoader)
Finds all implementation oforg.codehaus.commons.compiler
through the classLoader, then loads and instantiates the implementations'ICompilerFactory
s.static ICompilerFactory
CompilerFactoryFactory. getCompilerFactory(String compilerFactoryClassName)
Deprecated.static ICompilerFactory
CompilerFactoryFactory. getCompilerFactory(String compilerFactoryClassName, ClassLoader classLoader)
Loads anICompilerFactory
implementation by class name.static ICompilerFactory
CompilerFactoryFactory. getDefaultCompilerFactory()
Deprecated.static ICompilerFactory
CompilerFactoryFactory. getDefaultCompilerFactory(ClassLoader classLoader)
Finds the first implementation oforg.codehaus.commons.compiler
through the classLoader, then loads and instantiates the implementation'sICompilerFactory
. -
Uses of ICompilerFactory in org.codehaus.commons.compiler.jdk
Classes in org.codehaus.commons.compiler.jdk that implement ICompilerFactory Modifier and Type Class Description class
CompilerFactory
TheCompilerFactory
implementation fororg.codehaus.commons.compiler.jdk
. -
Uses of ICompilerFactory in org.codehaus.janino
Classes in org.codehaus.janino that implement ICompilerFactory Modifier and Type Class Description class
CompilerFactory
The JANINO implementation ofICompilerFactory
.
-