Package org.codehaus.groovy.tools
Class Compiler
java.lang.Object
org.codehaus.groovy.tools.Compiler
public class Compiler
extends java.lang.Object
A convenience front end for getting standard compilations done.
All compile() routines generate classes to the filesystem.
-
Field Summary
-
Constructor Summary
Constructors Constructor Description Compiler()
Initializes the Compiler with default configuration.Compiler(CompilerConfiguration configuration)
Initializes the Compiler with the specified configuration. -
Method Summary
Modifier and Type Method Description void
compile(java.io.File file)
Compiles a single File.void
compile(java.io.File[] files)
Compiles a series of Files.void
compile(java.lang.String[] files)
Compiles a series of Files from file names.void
compile(java.lang.String name, java.lang.String code)
Compiles a string of code.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
DEFAULT
-
-
Constructor Details
-
Compiler
public Compiler()Initializes the Compiler with default configuration. -
Compiler
Initializes the Compiler with the specified configuration.
-
-
Method Details
-
compile
Compiles a single File.- Throws:
CompilationFailedException
-
compile
Compiles a series of Files.- Throws:
CompilationFailedException
-
compile
Compiles a series of Files from file names.- Throws:
CompilationFailedException
-
compile
public void compile(java.lang.String name, java.lang.String code) throws CompilationFailedExceptionCompiles a string of code.- Throws:
CompilationFailedException
-