Package com.google.devtools.ksp.gradle
Interface KspAAWorkParameter
-
- All Implemented Interfaces:
-
org.gradle.workers.WorkParameters
public interface KspAAWorkParameter implements WorkParameters
-
-
Method Summary
Modifier and Type Method Description abstract KspGradleConfiggetConfig()abstract UnitsetConfig(KspGradleConfig config)abstract ConfigurableFileCollectiongetKspClassPath()abstract UnitsetKspClassPath(ConfigurableFileCollection kspClassPath)abstract List<File>getModifiedSources()abstract UnitsetModifiedSources(List<File> modifiedSources)abstract List<File>getRemovedSources()abstract UnitsetRemovedSources(List<File> removedSources)abstract List<String>getChangedClasses()abstract UnitsetChangedClasses(List<String> changedClasses)abstract BooleanisInputChangeIncremental()abstract UnitsetInputChangeIncremental(Boolean isInputChangeIncremental)-
-
Method Detail
-
getConfig
abstract KspGradleConfig getConfig()
-
setConfig
abstract Unit setConfig(KspGradleConfig config)
-
getKspClassPath
abstract ConfigurableFileCollection getKspClassPath()
-
setKspClassPath
abstract Unit setKspClassPath(ConfigurableFileCollection kspClassPath)
-
getModifiedSources
abstract List<File> getModifiedSources()
-
setModifiedSources
abstract Unit setModifiedSources(List<File> modifiedSources)
-
getRemovedSources
abstract List<File> getRemovedSources()
-
setRemovedSources
abstract Unit setRemovedSources(List<File> removedSources)
-
getChangedClasses
abstract List<String> getChangedClasses()
-
setChangedClasses
abstract Unit setChangedClasses(List<String> changedClasses)
-
isInputChangeIncremental
abstract Boolean isInputChangeIncremental()
-
setInputChangeIncremental
abstract Unit setInputChangeIncremental(Boolean isInputChangeIncremental)
-
-
-
-