-
- All Implemented Interfaces:
public interface KaptSourceSet
Represents a source set for a given kapt model.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enum
KaptSourceSet.KaptSourceSetType
Possible source set types.
-
Method Summary
Modifier and Type Method Description abstract String
getName()
Return the source set name. abstract KaptSourceSet.KaptSourceSetType
getType()
Return the type of the source set. abstract File
getGeneratedSourcesDirectory()
Return generated sources directory. abstract File
getGeneratedKotlinSourcesDirectory()
Return Kotlin generated sources directory. abstract File
getGeneratedClassesDirectory()
Return Kotlin generated classes directory. -
-
Method Detail
-
getType
abstract KaptSourceSet.KaptSourceSetType getType()
Return the type of the source set.
-
getGeneratedSourcesDirectory
abstract File getGeneratedSourcesDirectory()
Return generated sources directory.
-
getGeneratedKotlinSourcesDirectory
abstract File getGeneratedKotlinSourcesDirectory()
Return Kotlin generated sources directory.
-
getGeneratedClassesDirectory
abstract File getGeneratedClassesDirectory()
Return Kotlin generated classes directory.
-
-
-
-