Interface IssueProviderFactories
-
- All Known Implementing Classes:
IssueProviderFactoriesImpl
public interface IssueProviderFactories
Created 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
.IssueProviderFactory
getFactoryOfType(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,
null
otherwise
-
-