Fork options for Java compilation. Only take effect if CompileOptions.fork
is true
.
Type | Name and description |
---|---|
protected boolean |
excludeFromAntProperties(String fieldName) |
String |
getExecutable() Returns the compiler executable to be used. |
String |
getTempDir() Returns the directory used for temporary files that may be created to pass command line arguments to the compiler process. |
void |
setExecutable(String executable) Sets the compiler executable to be used. |
void |
setTempDir(String tempDir) Sets the directory used for temporary files that may be created to pass command line arguments to the compiler process. |
Methods inherited from class | Name |
---|---|
class BaseForkOptions |
excludeFromAntProperties, getJvmArgs, getMemoryInitialSize, getMemoryMaximumSize, setJvmArgs, setMemoryInitialSize, setMemoryMaximumSize |
class AbstractOptions |
define, excludeFromAntProperties, getAntPropertyName, getAntPropertyValue, optionMap |
Returns the compiler executable to be used. If set,
a new compiler process will be forked for every compile task.
Defaults to null
.
Returns the directory used for temporary files that may be created to pass
command line arguments to the compiler process. Defaults to null
,
in which case the directory will be chosen automatically.
Sets the compiler executable to be used. If set,
a new compiler process will be forked for every compile task.
Defaults to null
.
Sets the directory used for temporary files that may be created to pass
command line arguments to the compiler process. Defaults to null
,
in which case the directory will be chosen automatically.