Class KotlinApplication
java.lang.Object
io.micronaut.starter.feature.lang.kotlin.KotlinApplication
- All Implemented Interfaces:
io.micronaut.core.naming.Described
,io.micronaut.core.naming.Named
,io.micronaut.core.order.Ordered
,ApplicationFeature
,Feature
,KotlinApplicationFeature
@Requires(property="micronaut.starter.feature.kotlin.application.enabled",
value="true",
defaultValue="true")
@Singleton
public class KotlinApplication
extends Object
implements KotlinApplicationFeature
Kotlin application feature implementation.
Provides support for generating a Kotlin application, including the main application file and corresponding test files, depending on the selected application type and features.
-
Field Summary
Fields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
addApplication
(GeneratorContext generatorContext, ModuleContext module) Adds the application template to the module.protected void
addApplicationTest
(GeneratorContext generatorContext, ModuleContext module) Adds the application test template to the module.protected com.fizzed.rocker.RockerModel
application
(GeneratorContext generatorContext, ModuleContext module) Builds the applicationRockerModel
used to render the application source file.protected com.fizzed.rocker.RockerModel
applicationTest
(GeneratorContext generatorContext) Builds the application testRockerModel
based on the selected test framework and language.void
apply
(GeneratorContext generatorContext) If this method is called for a given feature that means the feature was explicitly selected, included by default as a result ofDefaultFeature.shouldApply(io.micronaut.starter.options.Options, java.util.Set)
, or added explicitly by another feature throughFeatureContext.addFeature(Feature)
.@NonNull String
getName()
The name of the feature.protected final String
getPath()
@Nullable String
mainClassName
(GeneratorContext generatorContext) protected boolean
shouldGenerateApplicationFile
(GeneratorContext generatorContext) Determines whether an application file should be generated based on the application type and the presence of theFunctionFeature
.boolean
This method must be implemented to ensure it is only selectable for the desired application types.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.projectgen.core.feature.ApplicationFeature
isVisible
Methods inherited from interface io.micronaut.core.naming.Described
getDescription
Methods inherited from interface io.micronaut.projectgen.core.feature.Feature
getCategory, getDescription, getFrameworkDocumentation, getThirdPartyDocumentation, getTitle, isCommunity, isPreview, processSelectedFeatures
Methods inherited from interface io.micronaut.projectgen.core.feature.KotlinApplicationFeature
getOrder
-
Constructor Details
-
KotlinApplication
public KotlinApplication()
-
-
Method Details
-
mainClassName
- Specified by:
mainClassName
in interfaceApplicationFeature
-
getName
Description copied from interface:Feature
The name of the feature. It must be unique. -
supports
Description copied from interface:Feature
This method must be implemented to ensure it is only selectable for the desired application types. This method is not used for determining if a default feature should be applied. -
apply
Description copied from interface:Feature
If this method is called for a given feature that means the feature was explicitly selected, included by default as a result ofDefaultFeature.shouldApply(io.micronaut.starter.options.Options, java.util.Set)
, or added explicitly by another feature throughFeatureContext.addFeature(Feature)
. At this point the feature list is set and cannot change.- Specified by:
apply
in interfaceApplicationFeature
- Specified by:
apply
in interfaceFeature
- Parameters:
generatorContext
- THe generator context
-
shouldGenerateApplicationFile
Determines whether an application file should be generated based on the application type and the presence of theFunctionFeature
.- Parameters:
generatorContext
- The context for project generation.- Returns:
- true if an application file should be generated; false otherwise.
-
addApplication
Adds the application template to the module.- Parameters:
generatorContext
- The context for project generation.module
- The module to which the application template is added.
-
application
protected com.fizzed.rocker.RockerModel application(GeneratorContext generatorContext, ModuleContext module) Builds the applicationRockerModel
used to render the application source file.- Parameters:
generatorContext
- The context for project generation.module
- The module in which the application is added.- Returns:
- The Rocker model for the application template.
-
addApplicationTest
Adds the application test template to the module.- Parameters:
generatorContext
- The context for project generation.module
- The module to which the test template is added.
-
applicationTest
Builds the application testRockerModel
based on the selected test framework and language.- Parameters:
generatorContext
- The context for project generation.- Returns:
- The Rocker model for the application test template.
-
getPath
-