-
- All Implemented Interfaces:
public interface KaptSourceSetRepresents a source set for a given kapt model.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumKaptSourceSet.KaptSourceSetTypePossible source set types.
-
Method Summary
Modifier and Type Method Description abstract StringgetName()Return the source set name. abstract KaptSourceSet.KaptSourceSetTypegetType()Return the type of the source set. abstract FilegetGeneratedSourcesDirectory()Return generated sources directory. abstract FilegetGeneratedKotlinSourcesDirectory()Return Kotlin generated sources directory. abstract FilegetGeneratedClassesDirectory()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.
-
-
-
-