Package org.jetbrains.kotlin.gradle.dsl
Interface KotlinCommonToolOptions
-
- All Implemented Interfaces:
public interface KotlinCommonToolOptions
-
-
Method Summary
Modifier and Type Method Description abstract KotlinCommonCompilerToolOptionsgetOptions()BooleangetAllWarningsAsErrors()UnitsetAllWarningsAsErrors(Boolean allWarningsAsErrors)BooleangetSuppressWarnings()UnitsetSuppressWarnings(Boolean suppressWarnings)BooleangetVerbose()UnitsetVerbose(Boolean verbose)List<String>getFreeCompilerArgs()UnitsetFreeCompilerArgs(List<String> freeCompilerArgs)-
-
Method Detail
-
getOptions
abstract KotlinCommonCompilerToolOptions getOptions()
-
getAllWarningsAsErrors
Boolean getAllWarningsAsErrors()
-
setAllWarningsAsErrors
Unit setAllWarningsAsErrors(Boolean allWarningsAsErrors)
-
getSuppressWarnings
Boolean getSuppressWarnings()
-
setSuppressWarnings
Unit setSuppressWarnings(Boolean suppressWarnings)
-
getVerbose
Boolean getVerbose()
-
setVerbose
Unit setVerbose(Boolean verbose)
-
getFreeCompilerArgs
List<String> getFreeCompilerArgs()
-
setFreeCompilerArgs
Unit setFreeCompilerArgs(List<String> freeCompilerArgs)
-
-
-
-