|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.gradle.api.internal.AbstractTask
org.gradle.api.DefaultTask
org.gradle.api.internal.ConventionTask
org.gradle.api.tasks.SourceTask
org.gradle.api.tasks.compile.AbstractCompile
public abstract class AbstractCompile
The base class for all JVM-based language compilation tasks.
| Field Summary |
|---|
| Fields inherited from interface org.gradle.api.Task |
|---|
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE |
| Constructor Summary | |
|---|---|
AbstractCompile()
|
|
| Method Summary | |
|---|---|
protected abstract void |
compile()
|
FileCollection |
getClasspath()
Returns the classpath to use to compile the source files. |
File |
getDestinationDir()
Returns the directory to generate the .class files into. |
String |
getSourceCompatibility()
Returns the Java language level to use to compile the source files. |
String |
getTargetCompatibility()
Returns the target JVM to generate the .class files for. |
void |
setClasspath(FileCollection configuration)
Sets the classpath to use to compile the source files. |
void |
setDestinationDir(File destinationDir)
Sets the directory to generate the .class files into. |
void |
setSourceCompatibility(String sourceCompatibility)
Sets the Java language level to use to compile the source files. |
void |
setTargetCompatibility(String targetCompatibility)
Sets the target JVM to generate the .class files for. |
| Methods inherited from class org.gradle.api.tasks.SourceTask |
|---|
exclude, exclude, exclude, exclude, getDefaultSource, getExcludes, getIncludes, getSource, include, include, include, include, setExcludes, setIncludes, setSource, source |
| Methods inherited from class org.gradle.api.internal.ConventionTask |
|---|
conventionMapping, getConventionMapping, setConventionMapping |
| Methods inherited from class org.gradle.api.internal.AbstractTask |
|---|
addValidator, captureStandardOutput, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, disableStandardOutputCapture, doFirst, doFirst, doLast, doLast, execute, getActions, getAdditionalProperties, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getDynamicObjectHelper, getEnabled, getExecuter, getGroup, getInputs, getLogger, getLogging, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getStandardOutputCapture, getState, getTaskDependencies, getTemporaryDir, getValidators, hasProperty, injectIntoNewInstance, isEnabled, leftShift, onlyIf, onlyIf, property, setActions, setConvention, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setGroup, setName, setOnlyIf, setOnlyIf, setProject, setProperty, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public AbstractCompile()
| Method Detail |
|---|
protected abstract void compile()
public FileCollection getClasspath()
public void setClasspath(FileCollection configuration)
configuration - The classpath. Must not be null, but may be empty.public File getDestinationDir()
.class files into.
public void setDestinationDir(File destinationDir)
.class files into.
destinationDir - The destination directory. Must not be null.public String getSourceCompatibility()
public void setSourceCompatibility(String sourceCompatibility)
sourceCompatibility - The source language level. Must not be null.public String getTargetCompatibility()
.class files for.
public void setTargetCompatibility(String targetCompatibility)
.class files for.
targetCompatibility - The target JVM. Must not be null.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||