Uses of Class
groovy.lang.GroovyClassLoader

Packages that use GroovyClassLoader
groovy.lang Core Groovy language classes for implementing data structures, closures, metadata and so forth. 
groovy.util Various Groovy utilities for working with nodes, builders, logging, JUnit test cases, text expressions, Ant tasks or JMX MBeans. 
org.codehaus.groovy.ant Ant tasks for working with Groovy - such as groovyc for compiling Groovy source code to Java bytecode 
org.codehaus.groovy.ast Groovy AST nodes for the syntax of the language 
org.codehaus.groovy.bsf Defines the BSF Engine for using Groovy inside any BSF application. 
org.codehaus.groovy.control Compiler control classes. 
org.codehaus.groovy.tools.javac Classes related to the joint compiler. 
org.codehaus.groovy.vmplugin.v5 Java 5 specific classes. 
 

Uses of GroovyClassLoader in groovy.lang
 

Subclasses of GroovyClassLoader in groovy.lang
static class GroovyClassLoader.InnerLoader
           
 

Fields in groovy.lang declared as GroovyClassLoader
private  GroovyClassLoader GroovyClassLoader.ClassCollector.cl
           
private  GroovyClassLoader GroovyClassLoader.InnerLoader.delegate
           
private  GroovyClassLoader GroovyShell.loader
           
 

Methods in groovy.lang that return GroovyClassLoader
 GroovyClassLoader GroovyShell.getClassLoader()
           
protected  GroovyClassLoader GroovyClassLoader.ClassCollector.getDefiningClassLoader()
           
 

Constructors in groovy.lang with parameters of type GroovyClassLoader
GroovyClassLoader.InnerLoader(GroovyClassLoader delegate)
           
GroovyClassLoader(GroovyClassLoader parent)
          creates a GroovyClassLoader using the given GroovyClassLoader as parent.
 

Uses of GroovyClassLoader in groovy.util
 

Fields in groovy.util declared as GroovyClassLoader
private static GroovyClassLoader AllTestSuite.GROOVY_LOADER
           
private  GroovyClassLoader GroovyScriptEngine.groovyLoader
           
protected  GroovyClassLoader GroovyTestSuite.loader
           
 

Methods in groovy.util that return GroovyClassLoader
 GroovyClassLoader GroovyScriptEngine.getGroovyClassLoader()
          Returns the GroovyClassLoader associated with this script engine instance.
 

Methods in groovy.util with parameters of type GroovyClassLoader
 java.lang.Object FactoryBuilderSupport.build(java.lang.String script, GroovyClassLoader loader)
           
 

Uses of GroovyClassLoader in org.codehaus.groovy.ant
 

Methods in org.codehaus.groovy.ant that return GroovyClassLoader
protected  GroovyClassLoader Groovyc.buildClassLoaderFor()
           
protected  GroovyClassLoader CompileTaskSupport.createClassLoader()
           
 

Methods in org.codehaus.groovy.ant with parameters of type GroovyClassLoader
protected  void Groovy.addClassPathes(GroovyClassLoader classLoader)
          Adds the class pathes (if any)
 

Uses of GroovyClassLoader in org.codehaus.groovy.ast
 

Fields in org.codehaus.groovy.ast declared as GroovyClassLoader
private  GroovyClassLoader CompileUnit.classLoader
           
 

Methods in org.codehaus.groovy.ast that return GroovyClassLoader
 GroovyClassLoader CompileUnit.getClassLoader()
           
 

Constructors in org.codehaus.groovy.ast with parameters of type GroovyClassLoader
CompileUnit(GroovyClassLoader classLoader, java.security.CodeSource codeSource, CompilerConfiguration config)
           
CompileUnit(GroovyClassLoader classLoader, CompilerConfiguration config)
           
 

Uses of GroovyClassLoader in org.codehaus.groovy.bsf
 

Fields in org.codehaus.groovy.bsf declared as GroovyClassLoader
private  GroovyClassLoader CachingGroovyEngine.loader
           
 

Uses of GroovyClassLoader in org.codehaus.groovy.control
 

Fields in org.codehaus.groovy.control declared as GroovyClassLoader
protected  GroovyClassLoader ProcessingUnit.classLoader
          The ClassLoader to use during processing
 

Methods in org.codehaus.groovy.control that return GroovyClassLoader
 GroovyClassLoader ProcessingUnit.getClassLoader()
          Returns the class loader in use by this ProcessingUnit.
 

Methods in org.codehaus.groovy.control with parameters of type GroovyClassLoader
private  void CompilationUnit.appendCompilerConfigurationClasspathToClassLoader(CompilerConfiguration configuration, GroovyClassLoader classLoader)
           
 void ProcessingUnit.setClassLoader(GroovyClassLoader loader)
          Sets the class loader for use by this ProcessingUnit.
 

Constructors in org.codehaus.groovy.control with parameters of type GroovyClassLoader
CompilationUnit(CompilerConfiguration configuration, java.security.CodeSource security, GroovyClassLoader loader)
          Initializes the CompilationUnit with a CodeSource for controlling security stuff and a class loader for loading classes.
CompilationUnit(GroovyClassLoader loader)
          Initializes the CompilationUnit with defaults except for class loader.
ProcessingUnit(CompilerConfiguration configuration, GroovyClassLoader classLoader, ErrorCollector er)
          Initialize the ProcessingUnit to the empty state.
SourceUnit(java.io.File source, CompilerConfiguration configuration, GroovyClassLoader loader, ErrorCollector er)
          Initializes the SourceUnit from the specified file.
SourceUnit(java.lang.String name, ReaderSource source, CompilerConfiguration flags, GroovyClassLoader loader, ErrorCollector er)
          Initializes the SourceUnit from existing machinery.
SourceUnit(java.lang.String name, java.lang.String source, CompilerConfiguration configuration, GroovyClassLoader loader, ErrorCollector er)
          Initializes the SourceUnit for a string of source.
SourceUnit(java.net.URL source, CompilerConfiguration configuration, GroovyClassLoader loader, ErrorCollector er)
          Initializes the SourceUnit from the specified URL.
 

Uses of GroovyClassLoader in org.codehaus.groovy.tools.javac
 

Methods in org.codehaus.groovy.tools.javac with parameters of type GroovyClassLoader
private  java.lang.String[] JavacJavaCompiler.makeParameters(java.util.List files, GroovyClassLoader parentClassLoader)
           
 

Constructors in org.codehaus.groovy.tools.javac with parameters of type GroovyClassLoader
JavaAwareCompilationUnit(CompilerConfiguration configuration, GroovyClassLoader groovyClassLoader)
           
JavaStubCompilationUnit(CompilerConfiguration config, GroovyClassLoader classLoader, java.io.File outputDirectory)
           
 

Uses of GroovyClassLoader in org.codehaus.groovy.vmplugin.v5
 

Methods in org.codehaus.groovy.vmplugin.v5 with parameters of type GroovyClassLoader
(package private) static java.lang.Boolean JUnit4Utils.realIsJUnit4Test(java.lang.Class scriptClass, GroovyClassLoader loader)
          Utility method to check via reflection if the parsed class appears to be a JUnit4 test.
(package private) static java.lang.Boolean TestNgUtils.realIsTestNgTest(java.lang.Class scriptClass, GroovyClassLoader loader)
          Utility method to check via reflection if the parsed class appears to be a TestNG test.
 



Copyright © ${year} The Codehaus. All Rights Reserved.