public class CompileOptions extends AbstractOptions
Constructor and Description |
---|
CompileOptions() |
Modifier and Type | Method and Description |
---|---|
CompileOptions |
debug(Map<String,Object> debugArgs)
Convenience method to set
DebugOptions with named parameter syntax. |
CompileOptions |
depend(Map<String,Object> dependArgs)
Convenience method to set
DependOptions with named parameter syntax. |
protected boolean |
excludeFromAntProperties(String fieldName) |
CompileOptions |
fork(Map<String,Object> forkArgs)
Convenience method to set
ForkOptions with named parameter syntax. |
protected String |
getAntPropertyName(String fieldName) |
protected Object |
getAntPropertyValue(String fieldName,
Object value) |
String |
getBootClasspath()
Returns the bootstrap classpath to be used for the compiler process.
|
List<String> |
getCompilerArgs()
Returns any additional arguments to be passed to the compiler.
|
DebugOptions |
getDebugOptions()
Returns options for generating debugging information.
|
DependOptions |
getDependOptions()
Returns options for using the Ant
<depend> task. |
String |
getEncoding()
Returns the character encoding to be used when reading source files.
|
String |
getExtensionDirs()
Returns the extension dirs to be used for the compiler process.
|
ForkOptions |
getForkOptions()
Returns options for running the compiler in a child process.
|
boolean |
isDebug()
Tells whether to include debugging information in the generated class files.
|
boolean |
isDeprecation()
Tells whether to log details of usage of deprecated members or classes.
|
boolean |
isFailOnError()
Tells whether to fail the build when compilation fails.
|
boolean |
isFork()
Tells whether to run the compiler in its own process.
|
boolean |
isIncremental()
informs whether to use experimental incremental compilation feature.
|
boolean |
isListFiles()
Tells whether to log the files to be compiled.
|
boolean |
isUseDepend()
Tells whether to use the Ant
<depend> task. |
boolean |
isVerbose()
Tells whether to produce verbose output.
|
boolean |
isWarnings()
Tells whether to log warning messages.
|
Map<String,Object> |
optionMap()
Internal method.
|
void |
setBootClasspath(String bootClasspath)
Sets the bootstrap classpath to be used for the compiler process.
|
void |
setCompilerArgs(List<String> compilerArgs)
Sets any additional arguments to be passed to the compiler.
|
void |
setDebug(boolean debug)
Sets whether to include debugging information in the generated class files.
|
void |
setDebugOptions(DebugOptions debugOptions)
Sets options for generating debugging information.
|
void |
setDependOptions(DependOptions dependOptions)
Sets options for using the Ant
<depend> task. |
void |
setDeprecation(boolean deprecation)
Sets whether to log details of usage of deprecated members or classes.
|
void |
setEncoding(String encoding)
Sets the character encoding to be used when reading source files.
|
void |
setExtensionDirs(String extensionDirs)
Sets the extension dirs to be used for the compiler process.
|
void |
setFailOnError(boolean failOnError)
Sets whether to fail the build when compilation fails.
|
void |
setFork(boolean fork)
Sets whether to run the compiler in its own process.
|
void |
setForkOptions(ForkOptions forkOptions)
Sets options for running the compiler in a child process.
|
CompileOptions |
setIncremental(boolean incremental) |
void |
setListFiles(boolean listFiles)
Sets whether to log the files to be compiled.
|
void |
setUseDepend(boolean useDepend)
Sets whether to use the Ant
<depend> task. |
void |
setVerbose(boolean verbose)
Sets whether to produce verbose output.
|
void |
setWarnings(boolean warnings)
Sets whether to log warning messages.
|
define
@Input public boolean isFailOnError()
true
.public void setFailOnError(boolean failOnError)
true
.public boolean isVerbose()
false
.public void setVerbose(boolean verbose)
false
.public boolean isListFiles()
false
.public void setListFiles(boolean listFiles)
false
.public boolean isDeprecation()
false
.public void setDeprecation(boolean deprecation)
false
.public boolean isWarnings()
true
.public void setWarnings(boolean warnings)
true
.@Input @Optional public String getEncoding()
null
, in which
case the platform default encoding will be used.public void setEncoding(String encoding)
null
, in which
case the platform default encoding will be used.@Input public boolean isDebug()
true
. See DebugOptions.getDebugLevel()
for which debugging information will be generated.public void setDebug(boolean debug)
true
. See DebugOptions.getDebugLevel()
for which debugging information will be generated.public DebugOptions getDebugOptions()
public void setDebugOptions(DebugOptions debugOptions)
public boolean isFork()
false
.public void setFork(boolean fork)
false
.public ForkOptions getForkOptions()
public void setForkOptions(ForkOptions forkOptions)
public boolean isUseDepend()
<depend>
task.
Only takes effect if useAnt
is true
. Defaults to
false
.public void setUseDepend(boolean useDepend)
<depend>
task.
Only takes effect if useAnt
is true
. Defaults to
false
.public DependOptions getDependOptions()
<depend>
task.public void setDependOptions(DependOptions dependOptions)
<depend>
task.@Input @Optional public String getBootClasspath()
fork
is true
. Defaults to null
.public void setBootClasspath(String bootClasspath)
fork
is true
. Defaults to null
.@Input @Optional public String getExtensionDirs()
fork
is true
. Defaults to null
.public void setExtensionDirs(String extensionDirs)
fork
is true
. Defaults to null
.@Input public List<String> getCompilerArgs()
public void setCompilerArgs(List<String> compilerArgs)
public CompileOptions fork(Map<String,Object> forkArgs)
ForkOptions
with named parameter syntax.
Calling this method will set fork
to true
.public CompileOptions debug(Map<String,Object> debugArgs)
DebugOptions
with named parameter syntax.
Calling this method will set debug
to true
.public CompileOptions depend(Map<String,Object> dependArgs)
DependOptions
with named parameter syntax.
Calling this method will set useDepend
to true
.@Incubating public CompileOptions setIncremental(boolean incremental)
public Map<String,Object> optionMap()
optionMap
in class AbstractOptions
protected boolean excludeFromAntProperties(String fieldName)
excludeFromAntProperties
in class AbstractOptions
protected String getAntPropertyName(String fieldName)
getAntPropertyName
in class AbstractOptions
protected Object getAntPropertyValue(String fieldName, Object value)
getAntPropertyValue
in class AbstractOptions
@Incubating public boolean isIncremental()
setIncremental(boolean)