Package io.micronaut.starter.feature
Class MicronautProcessingCompilerArgs
java.lang.Object
io.micronaut.starter.feature.MicronautProcessingCompilerArgs
- All Implemented Interfaces:
io.micronaut.core.naming.Described,io.micronaut.core.naming.Named,io.micronaut.core.order.Ordered,CompilerArgCodeContributingFeature,DefaultFeature,Feature
@Singleton
public class MicronautProcessingCompilerArgs
extends Object
implements CompilerArgCodeContributingFeature, DefaultFeature
-
Field Summary
Fields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCompilerArgs(GeneratorContext generatorContext) getName()The name of the feature.booleanSome features should not be visible to the user because they are a common parent of other selectable features, or they should always be applied, or any other reason.booleanshouldApply(ApplicationType applicationType, Options options, Set<Feature> selectedFeatures) Determines if the feature should be applied to the project.booleansupports(ApplicationType applicationType) 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, waitMethods inherited from interface io.micronaut.starter.feature.DefaultFeature
getTargetFrameworkMethods inherited from interface io.micronaut.core.naming.Described
getDescriptionMethods inherited from interface io.micronaut.starter.feature.Feature
apply, getCategory, getDescription, getMicronautDocumentation, getOrder, getThirdPartyDocumentation, getTitle, isCommunity, isPreview, processSelectedFeatures
-
Constructor Details
-
MicronautProcessingCompilerArgs
public MicronautProcessingCompilerArgs()
-
-
Method Details
-
getCompilerArgs
- Specified by:
getCompilerArgsin interfaceCompilerArgCodeContributingFeature
-
getName
Description copied from interface:FeatureThe name of the feature. It must be unique. -
isVisible
public boolean isVisible()Description copied from interface:FeatureSome features should not be visible to the user because they are a common parent of other selectable features, or they should always be applied, or any other reason. -
supports
Description copied from interface:FeatureThis 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. -
shouldApply
public boolean shouldApply(ApplicationType applicationType, Options options, Set<Feature> selectedFeatures) Description copied from interface:DefaultFeatureDetermines if the feature should be applied to the project. Default features do not need to be concerned if the feature was already selected and therefore is already in the list of selected features. The addition to the set is based on the identity of the feature instance and all features are singletons.- Specified by:
shouldApplyin interfaceDefaultFeature- Parameters:
applicationType- The application typeoptions- The optionsselectedFeatures- The features manually selected by the user- Returns:
- True if the feature should apply
-