SourceDirectorySet

A SourceDirectorySet represents a set of source files composed from a set of source directories, along with associated include and exclude patterns.

SourceDirectorySet extends FileTree. The contents of the file tree represent the source files of this set, arranged in a hierarchy. The file tree is live and reflects changes to the source directories and their contents.

You can create an instance of SourceDirectorySet using the sourceDirectorySet method.

Inheritors

Functions

Link copied to clipboard
abstract fun addToAntBuilder(builder: Any, nodeName: String): Any
abstract fun addToAntBuilder(builder: Any, nodeName: String, type: FileCollection.AntType)
Link copied to clipboard
abstract fun <T : Task?> compiledBy(taskProvider: TaskProvider<T>, mapping: (T) -> DirectoryProperty)
Define the task responsible for processing the source.
Link copied to clipboard
abstract fun contains(file: File): Boolean
Link copied to clipboard
abstract fun exclude(excludes: Array<String>): PatternFilterable
Link copied to clipboard
abstract fun filter(filterClosure: Closure): FileCollection
Link copied to clipboard
open fun forEach(action: Consumer<in T>)
Link copied to clipboard
abstract fun getAsFileTree(): FileTree
Link copied to clipboard
abstract fun getAsPath(): String
Link copied to clipboard
Link copied to clipboard
Returns the directory property that is bound to the task that produces the output via compiledBy.
Link copied to clipboard
Configure the directory to assemble the compiled classes into.
Link copied to clipboard
abstract fun getDisplayName(): String
Link copied to clipboard
Link copied to clipboard
abstract fun getExcludes(): Set<String>
Link copied to clipboard
abstract fun getFiles(): Set<File>
Link copied to clipboard
Returns the filter used to select the source from the source directories.
Link copied to clipboard
abstract fun getIncludes(): Set<String>
Link copied to clipboard
abstract fun getName(): String
A concise name for the source directory set (typically used to identify it in a collection).
Link copied to clipboard
abstract fun getSingleFile(): File
Link copied to clipboard
Returns the source directories that make up this set, represented as a FileCollection.
Link copied to clipboard
abstract fun getSrcDirs(): Set<File>
Returns the source directories that make up this set.
Link copied to clipboard
Returns the source directory trees that make up this set.
Link copied to clipboard
abstract fun include(includes: Array<String>): PatternFilterable
Link copied to clipboard
abstract fun isEmpty(): Boolean
Link copied to clipboard
abstract fun iterator(): Iterator<T>
Link copied to clipboard
abstract fun matching(filterConfigClosure: Closure): FileTree
Link copied to clipboard
abstract fun minus(collection: FileCollection): FileCollection
Link copied to clipboard
abstract fun plus(collection: FileCollection): FileCollection
abstract fun plus(fileTree: FileTree): FileTree
Link copied to clipboard
abstract fun setExcludes(excludes: Iterable<String>): PatternFilterable
Link copied to clipboard
abstract fun setIncludes(includes: Iterable<String>): PatternFilterable
Link copied to clipboard
abstract fun setSrcDirs(srcPaths: Iterable<out Any>): SourceDirectorySet
Sets the source directories for this set.
Link copied to clipboard
Adds the given source to this set.
Link copied to clipboard
Link copied to clipboard
abstract fun srcDir(srcPath: Any): SourceDirectorySet
Adds the given source directory to this set.
Link copied to clipboard
abstract fun srcDirs(srcPaths: Array<Any>): SourceDirectorySet
Adds the given source directories to this set.
Link copied to clipboard
abstract fun visit(visitor: FileVisitor): FileTree