Interface ProjectOptionsConfigurator
@OpenApiAll
public interface ProjectOptionsConfigurator
Project options configurator. Configurators are registered by
ProjectOptions.addConfigurator(ProjectOptionsConfigurator)
.-
Method Summary
Modifier and TypeMethodDescriptiondefault void
afterLoad
(ProjectOptions options) Configure given project options after project load.void
configure
(ProjectOptions options) Configure the default values for given options.default void
configureLoadedOptions
(ProjectOptions options) Configure the real values for given options.
-
Method Details
-
configure
Configure the default values for given options.- Parameters:
options
- to configure.
-
afterLoad
Configure given project options after project load.- Parameters:
options
- options to configure.
-
configureLoadedOptions
Configure the real values for given options.- Parameters:
options
- options to configure.
-