| |
|
| java.lang.Object org.codehaus.groovy.tools.Compiler
Compiler | public class Compiler (Code) | | A convenience front end for getting standard compilations done.
All compile() routines generate classes to the filesystem.
author: Chris Poirier version: $Id: Compiler.java 2257 2005-06-09 19:51:59Z blackdrag $ |
Constructor Summary | |
public | Compiler() Initializes the Compiler with default configuration. | public | Compiler(CompilerConfiguration configuration) Initializes the Compiler with the specified configuration. |
Method Summary | |
public void | compile(File file) Compiles a single File. | public void | compile(File[] files) Compiles a series of Files. | public void | compile(String[] files) Compiles a series of Files from file names. | public void | compile(String name, String code) Compiles a string of code. |
Compiler | public Compiler()(Code) | | Initializes the Compiler with default configuration.
|
|
|
|