|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.ast.CompileUnit
public class CompileUnit extends Object
Represents the entire contents of a compilation step which consists of one or more ModuleNode instances. There's one instance of this that's shared by all modules and classes compiled during a single invocation of the compiler.
It's attached to MethodNodes and ClassNodes and is used to find fully qualified names of classes, resolve imports, and that sort of thing.
Constructor Summary | |
CompileUnit(GroovyClassLoader classLoader, CompilerConfiguration config)
|
|
CompileUnit(GroovyClassLoader classLoader, CodeSource codeSource, CompilerConfiguration config)
|
Method Summary | |
---|---|
void
|
addClass(ClassNode node)
Adds a class to the unit. |
void
|
addClassNodeToCompile(ClassNode node, SourceUnit location)
this method actually does not compile a class. |
void
|
addGeneratedInnerClass(InnerClassNode icn)
|
void
|
addModule(ModuleNode node)
|
ClassNode
|
getClass(String name)
@return the ClassNode for the given qualified name or returns null if the name does not exist in the current compilation unit (ignoring the .class files on the classpath) |
GroovyClassLoader
|
getClassLoader()
|
List
|
getClasses()
@return a list of all the classes in each module in the compilation unit |
CodeSource
|
getCodeSource()
|
CompilerConfiguration
|
getConfig()
|
InnerClassNode
|
getGeneratedInnerClass(String name)
|
Map
|
getGeneratedInnerClasses()
|
List
|
getModules()
|
SourceUnit
|
getScriptSourceLocation(String className)
|
boolean
|
hasClassNodeToCompile()
|
Iterator
|
iterateClassNodeToCompile()
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public CompileUnit(GroovyClassLoader classLoader, CompilerConfiguration config)
public CompileUnit(GroovyClassLoader classLoader, CodeSource codeSource, CompilerConfiguration config)
Method Detail |
---|
public void addClass(ClassNode node)
public void addClassNodeToCompile(ClassNode node, SourceUnit location)
public void addGeneratedInnerClass(InnerClassNode icn)
public void addModule(ModuleNode node)
public ClassNode getClass(String name)
public GroovyClassLoader getClassLoader()
public List getClasses()
public CodeSource getCodeSource()
public CompilerConfiguration getConfig()
public InnerClassNode getGeneratedInnerClass(String name)
public Map getGeneratedInnerClasses()
public List getModules()
public SourceUnit getScriptSourceLocation(String className)
public boolean hasClassNodeToCompile()
public Iterator iterateClassNodeToCompile()
Copyright © 2003-2013 The Codehaus. All rights reserved.