|
|||||||||
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
public class SourceTask
A SourceTask
performs some operation on source files.
Field Summary |
---|
Fields inherited from interface org.gradle.api.Task |
---|
AUTOSKIP_PROPERTY_PREFIX, TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_NAME, TASK_OVERWRITE, TASK_TYPE |
Constructor Summary | |
---|---|
SourceTask()
|
Method Summary | |
---|---|
SourceTask |
exclude(java.lang.Iterable<java.lang.String> excludes)
Adds an ANT style exclude pattern. |
SourceTask |
exclude(java.lang.String... excludes)
Adds an ANT style exclude pattern. |
protected FileTree |
getDefaultSource()
Returns the default source for this task, if any. |
java.util.Set<java.lang.String> |
getExcludes()
Get the set of exclude patterns. |
java.util.Set<java.lang.String> |
getIncludes()
Get the set of include patterns. |
FileTree |
getSource()
Returns the source for this task, after the include and exclude patterns have been applied. |
SourceTask |
include(java.lang.Iterable<java.lang.String> includes)
Adds an ANT style include pattern. |
SourceTask |
include(java.lang.String... includes)
Adds an ANT style include pattern. |
SourceTask |
setExcludes(java.lang.Iterable<java.lang.String> excludes)
Set the allowable exclude patterns. |
SourceTask |
setIncludes(java.lang.Iterable<java.lang.String> includes)
Set the allowable include patterns. |
void |
setSource(java.lang.Object source)
Sets the source for this task. |
SourceTask |
source(java.lang.Object... sources)
Adds some source to this task. |
Methods inherited from class org.gradle.api.internal.ConventionTask |
---|
conventionMapping, getConventionMapping, setConventionMapping |
Methods inherited from class org.gradle.api.DefaultTask |
---|
configure, doFirst, doLast, leftShift |
Methods inherited from class org.gradle.api.internal.AbstractTask |
---|
captureStandardOutput, compareTo, defineProperty, deleteAllActions, dependsOn, dependsOnTaskDidWork, disableStandardOutputCapture, doFirst, doLast, equals, execute, getActions, getAdditionalProperties, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getDynamicObjectHelper, getEnabled, getExecuted, getLogger, getName, getOutput, getPath, getProject, getStandardOutputCapture, getTaskDependencies, hashCode, hasProperty, injectIntoNextInstance, isDidWork, isEnabled, isExecuted, onlyIf, onlyIf, property, setActions, setAdditionalProperties, setConvention, setDependsOn, setDescription, setDidWork, setEnabled, setExecuted, setName, setOutputHandler, setProject, setProperty, setStandardOutputCapture, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface groovy.lang.GroovyObject |
---|
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty |
Constructor Detail |
---|
public SourceTask()
Method Detail |
---|
public FileTree getSource()
protected FileTree getDefaultSource()
public void setSource(java.lang.Object source)
Project.files(Object...)
.
source
- The source.public SourceTask source(java.lang.Object... sources)
Project.files(Object...)
.
sources
- The source to add
public SourceTask include(java.lang.String... includes)
include
in interface PatternFilterable
includes
- a vararg list of include patternsPattern Format
public SourceTask include(java.lang.Iterable<java.lang.String> includes)
include
in interface PatternFilterable
includes
- a Iterable providing more include patternsPattern Format
public SourceTask exclude(java.lang.String... excludes)
exclude
in interface PatternFilterable
excludes
- a vararg list of exclude patternsPattern Format
public SourceTask exclude(java.lang.Iterable<java.lang.String> excludes)
exclude
in interface PatternFilterable
excludes
- a Iterable providing new exclude patternsPattern Format
public java.util.Set<java.lang.String> getIncludes()
getIncludes
in interface PatternFilterable
public SourceTask setIncludes(java.lang.Iterable<java.lang.String> includes)
PatternFilterable.include(Iterable)
this replaces any previously defined includes.
setIncludes
in interface PatternFilterable
includes
- an Iterable providing new include patternsPattern Format
public java.util.Set<java.lang.String> getExcludes()
getExcludes
in interface PatternFilterable
public SourceTask setExcludes(java.lang.Iterable<java.lang.String> excludes)
PatternFilterable.exclude(Iterable)
this replaces any previously defined excludes.
setExcludes
in interface PatternFilterable
excludes
- an Iterable providing new exclude patternsPattern Format
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |