|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
org.gradle.api.file.ConfigurableFileCollectionorg.gradle.api.file.FileCollection
org.gradle.api.Buildable
org.gradle.api.tasks.AntBuilderAware
public interface ConfigurableFileCollection extends FileCollection
A ConfigurableFileCollection is a mutable FileCollection.
You can obtain an instance of ConfigurableFileCollection by calling Project.files
| Method Summary | |
|---|---|
ConfigurableFileCollection
|
builtBy(java.lang.Object tasks)
Registers some tasks which build the files of this collection. |
ConfigurableFileCollection
|
from(java.lang.Object paths)
Adds a set of source paths to this collection. |
java.util.Set
|
getBuiltBy()
Returns the set of tasks which build the files of this collection. |
java.util.Set
|
getFrom()
Returns the set of source paths for this collection. |
ConfigurableFileCollection
|
setBuiltBy(java.lang.Iterable tasks)
Sets the tasks which build the files of this collection. |
void
|
setFrom(java.lang.Iterable paths)
Sets the source paths for this collection. |
void
|
setFrom(java.lang.Object paths)
Sets the source paths for this collection. |
| Methods inherited from interface FileCollection | |
|---|---|
| add, addToAntBuilder, addToAntBuilder, asType, contains, filter, filter, getAsFileTree, getAsPath, getFiles, getSingleFile, isEmpty, minus, plus, stopExecutionIfEmpty |
| Methods inherited from interface java.lang.Iterable | |
|---|---|
| java.lang.Iterable#iterator() |
| Methods inherited from interface Buildable | |
|---|---|
| getBuildDependencies |
| Methods inherited from interface AntBuilderAware | |
|---|---|
| addToAntBuilder |
| Method Detail |
|---|
public ConfigurableFileCollection builtBy(java.lang.Object tasks)
tasks - The tasks. These are evaluated as for Task.dependsOn.
public ConfigurableFileCollection from(java.lang.Object paths)
paths - The files to add.
public java.util.Set getBuiltBy()
public java.util.Set getFrom()
public ConfigurableFileCollection setBuiltBy(java.lang.Iterable tasks)
tasks - The tasks. These are evaluated as for Task.dependsOn.
public void setFrom(java.lang.Iterable paths)
paths - The paths.
public void setFrom(java.lang.Object paths)
paths - The paths.
Groovy Documentation