-
- All Implemented Interfaces:
public interface NoArgEntry point for Kotlin No Arg models. Represents the description of annotations interpreted by 'kotlin-noarg' plugin.
-
-
Method Summary
Modifier and Type Method Description abstract LonggetModelVersion()Return a number representing the version of this API. abstract StringgetName()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 BooleangetIsInvokeInitializers()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.
-
-
-
-