-
- All Implemented Interfaces:
public interface KotlinCompilationData<T extends KotlinCommonOptions>
-
-
Method Summary
Modifier and Type Method Description abstract Project
getProject()
abstract Object
getOwner()
abstract String
getCompilationPurpose()
abstract String
getCompilationClassifier()
abstract Map<String, SourceDirectorySet>
getKotlinSourceDirectoriesByFragmentName()
abstract String
getCompileKotlinTaskName()
abstract String
getCompileAllTaskName()
abstract FileCollection
getCompileDependencyFiles()
abstract KotlinCompilationOutput
getOutput()
abstract LanguageSettings
getLanguageSettings()
abstract KotlinPlatformType
getPlatformType()
abstract String
getModuleName()
abstract String
getOwnModuleName()
abstract T
getKotlinOptions()
abstract HasCompilerOptions<?>
getCompilerOptions()
abstract Iterable<FileCollection>
getFriendPaths()
-
-
Method Detail
-
getProject
abstract Project getProject()
-
getCompilationPurpose
abstract String getCompilationPurpose()
-
getCompilationClassifier
abstract String getCompilationClassifier()
-
getKotlinSourceDirectoriesByFragmentName
abstract Map<String, SourceDirectorySet> getKotlinSourceDirectoriesByFragmentName()
-
getCompileKotlinTaskName
abstract String getCompileKotlinTaskName()
-
getCompileAllTaskName
abstract String getCompileAllTaskName()
-
getCompileDependencyFiles
abstract FileCollection getCompileDependencyFiles()
-
getOutput
abstract KotlinCompilationOutput getOutput()
-
getLanguageSettings
abstract LanguageSettings getLanguageSettings()
-
getPlatformType
abstract KotlinPlatformType getPlatformType()
-
getModuleName
abstract String getModuleName()
-
getOwnModuleName
abstract String getOwnModuleName()
-
getKotlinOptions
abstract T getKotlinOptions()
-
getCompilerOptions
abstract HasCompilerOptions<?> getCompilerOptions()
-
getFriendPaths
abstract Iterable<FileCollection> getFriendPaths()
-
-
-
-