Uses of Class
org.codehaus.janino.IClassLoader

Packages that use IClassLoader
org.codehaus.janino The classes in this package pose the core of the Janino JavaTM compiler. 
org.codehaus.janino.tools Auxiliary command line tools related to JANINO. 
 

Uses of IClassLoader in org.codehaus.janino
 

Subclasses of IClassLoader in org.codehaus.janino
 class ClassLoaderIClassLoader
          An IClassLoader that loads IClasses through a reflection ClassLoader.
 class JavaSourceIClassLoader
          This IClassLoader finds, scans and parses compilation units.
 class ResourceFinderIClassLoader
          This IClassLoader loads IClasses through a a ResourceFinder that designates ClassFiles.
 

Methods in org.codehaus.janino that return IClassLoader
static IClassLoader IClassLoader.createJavacLikePathIClassLoader(java.io.File[] optionalBootClassPath, java.io.File[] optionalExtDirs, java.io.File[] classPath)
          Create an IClassLoader that looks for classes in the given "boot class path", then in the given "extension directories", and then in the given "class path".
 

Constructors in org.codehaus.janino with parameters of type IClassLoader
ClassFileIClass(ClassFile classFile, IClassLoader iClassLoader)
           
Compiler(ResourceFinder sourceFinder, IClassLoader iClassLoader, ResourceFinder classFileFinder, ResourceCreator classFileCreator, java.lang.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, pass Compiler.FIND_NEXT_TO_SOURCE_FILE as the classFileResourceFinder and Compiler.CREATE_NEXT_TO_SOURCE_FILE as the classFileResourceCreator.
IClassLoader(IClassLoader optionalParentIClassLoader)
           
JavaSourceIClassLoader(ResourceFinder sourceFinder, java.lang.String optionalCharacterEncoding, java.util.Set unitCompilers, IClassLoader optionalParentIClassLoader)
          Notice that the unitCompilers set is both read and written by the JavaSourceIClassLoader: As it searches for IClasses, it looks into unitCompilers for class declarations, and as it opens, scans and parses compilation units on-the-fly, it adds them to unitCompilers.
ResourceFinderIClassLoader(ResourceFinder resourceFinder, IClassLoader optionalParentIClassLoader)
           
UnitCompiler(Java.CompilationUnit compilationUnit, IClassLoader iClassLoader)
           
 

Uses of IClassLoader in org.codehaus.janino.tools
 

Constructors in org.codehaus.janino.tools with parameters of type IClassLoader
JGrep(IClassLoader iClassLoader, java.lang.String optionalCharacterEncoding, boolean verbose)
           
 



Copyright © 2001-2012. All Rights Reserved.