Interface IssueProviderFactories
-
- All Known Implementing Classes:
IssueProviderFactoriesImpl
public interface IssueProviderFactoriesCreated with IntelliJ IDEA.- Author:
- Oleg Rybak (oleg.rybak@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,IssueProviderType>getAvailableFactoryTypes()Scans plugins for extensions of typeIssueProviderFactory.IssueProviderFactorygetFactoryOfType(String factoryType)Searches available issue provider factories for given factory type
-
-
-
Method Detail
-
getAvailableFactoryTypes
@NotNull Map<String,IssueProviderType> getAvailableFactoryTypes()
Scans plugins for extensions of typeIssueProviderFactory. Returns found ones- Returns:
- available Issue provider factories
-
getFactoryOfType
@Nullable @Contract("null -> null") IssueProviderFactory getFactoryOfType(@Nullable String factoryType)Searches available issue provider factories for given factory type- Parameters:
factoryType- factory type- Returns:
- corresponding issue provider factory, if there is one,
nullotherwise
-
-