Method Summary |
|
public String | getClassPath() Returns the class path to be used during compilation. |
public String | getJavacOpts() Returns the options to be passed into javac . |
public boolean | getKeepJavaFiles() Returns whether or not generated Java files should be preserved after compilation. |
public boolean | getOptimize() Returns whether or not optimization should be performed. |
public boolean | getRunJavac() Returns whether or not javac should be run against the generated Java files. |
public File | getTargetDirectory() Returns the target directory, generally specified with the "-d" option on the command line. |
public void | setClassPath(String classPath) Sets the class path to be used during compilation. |
public void | setJavacOpts(String javacOpts) Sets options to be passed into javac . |
public void | setKeepJavaFiles(boolean keepJavaFiles) Sets whether or not generated Java files should be preserved after compilation. |
public void | setOptimize(boolean optimize) Sets whether or not optimizations should be performed. |
public void | setRunJavac(boolean runJavac) Sets whether or not javac is run against the generated Java files. |
public void | setTargetDirectory(File targetDirectory) Sets the target directory into which compiled classes will be placed. |