Interface DslConverterManager
-
- All Superinterfaces:
TeamCityExtension
public interface DslConverterManager extends TeamCityExtension
Provides information about dsl converters to TeamCity core
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getConverterDescription(int converterId)
Returns a description of settings modified by the converter with specified converter number.boolean
hasConverter(int converterId)
Returns true if there is a dsl converter with specified converter number.
-
-
-
Method Detail
-
hasConverter
boolean hasConverter(int converterId)
Returns true if there is a dsl converter with specified converter number.- Parameters:
converterId
- id of the converter- Returns:
- see above
-
getConverterDescription
@NotNull String getConverterDescription(int converterId)
Returns a description of settings modified by the converter with specified converter number. It is used in the '%Description% dsl needs to be updated' message in UI.- Parameters:
converterId
- converter id of interest- Returns:
- see above
-
-