-
- All Implemented Interfaces:
public interface NoArg
Entry point for Kotlin No Arg models. Represents the description of annotations interpreted by 'kotlin-noarg' plugin.
-
-
Method Summary
Modifier and Type Method Description abstract Long
getModelVersion()
Return a number representing the version of this API. abstract String
getName()
Returns the module (Gradle project) name. abstract List<String>
getAnnotations()
Return the list of annotations. abstract List<String>
getPresets()
Return the list of presets. abstract Boolean
getIsInvokeInitializers()
Return if should invoke initializers. -
-
Method Detail
-
getModelVersion
abstract Long getModelVersion()
Return a number representing the version of this API. Always increasing if changed.
-
getAnnotations
abstract List<String> getAnnotations()
Return the list of annotations.
-
getPresets
abstract List<String> getPresets()
Return the list of presets.
-
getIsInvokeInitializers
abstract Boolean getIsInvokeInitializers()
Return if should invoke initializers. Only makes sense for type NO_ARG.
-
-
-
-