Package jetbrains.buildServer.parameters
Interface ReferencesResolverUtil.ReferencesResolverListener
-
- Enclosing class:
- ReferencesResolverUtil
public static interface ReferencesResolverUtil.ReferencesResolverListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanappendReference(String referenceKey)Processes the reference found.voidappendText(String text)Processes static text found.
-
-
-
Method Detail
-
appendText
void appendText(@NotNull String text)Processes static text found.- Parameters:
text- the text to process
-
appendReference
boolean appendReference(@NotNull String referenceKey)Processes the reference found.- Parameters:
referenceKey- the reference name to process- Returns:
- true if the reference was successfully processed, or false if the listener considers it not a reference. In the latter case, appendText will be called with the same text by the resolver.
-
-