Interface ProjectSettingsGeneratorRegistry
-
- All Known Implementing Classes:
ProjectSettingsGeneratorRegistryImpl
public interface ProjectSettingsGeneratorRegistry
-
-
Field Summary
Fields Modifier and Type Field Description static String
KOTLIN_FORMAT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProjectSettingsGenerator
findGenerator(String format)
ProjectSettingsGenerator
getDefaultGenerator()
Collection<ProjectSettingsGenerator>
getGenerators()
Returns all registered generatorsvoid
register(ProjectSettingsGenerator generator)
-
-
-
Field Detail
-
KOTLIN_FORMAT
static final String KOTLIN_FORMAT
- See Also:
- Constant Field Values
-
-
Method Detail
-
findGenerator
@Nullable ProjectSettingsGenerator findGenerator(@NotNull String format)
-
getDefaultGenerator
@NotNull ProjectSettingsGenerator getDefaultGenerator()
- Returns:
- default project settings generator (see
ProjectSettingsGenerator.isCustomFormat()
) - Since:
- 2018.2
-
getGenerators
@NotNull Collection<ProjectSettingsGenerator> getGenerators()
Returns all registered generators- Returns:
- see above
-
register
void register(@NotNull ProjectSettingsGenerator generator)
-
-