Interface CustomEnvironmentConfigPluginManager
-
- All Known Implementing Classes:
CustomEnvironmentConfigPluginManagerImpl
@ExperimentalApi public interface CustomEnvironmentConfigPluginManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable CustomEnvironmentConfigPluginModuleDescriptor
getCustomEnvironmentConfigPlugin(@NotNull String completeModuleKey)
@NotNull List<CustomEnvironmentConfigPluginModuleDescriptor>
getCustomEnvironmentConfigPlugins()
boolean
isAnyPluginPresent()
-
-
-
Method Detail
-
getCustomEnvironmentConfigPlugins
@NotNull @NotNull List<CustomEnvironmentConfigPluginModuleDescriptor> getCustomEnvironmentConfigPlugins()
- Returns:
- List of
CustomEnvironmentConfigPluginModuleDescriptor
, whichCustomEnvironmentConfigPlugin
modules are not null
-
getCustomEnvironmentConfigPlugin
@Nullable @Nullable CustomEnvironmentConfigPluginModuleDescriptor getCustomEnvironmentConfigPlugin(@NotNull @NotNull String completeModuleKey)
-
isAnyPluginPresent
boolean isAnyPluginPresent()
- Returns:
- true if any plugin of
CustomEnvironmentConfigPlugin
type is installed and enabled
-
-