Package jetbrains.buildServer.vcs.impl
Class FinalRevisionCalculatorOptions
- java.lang.Object
-
- jetbrains.buildServer.vcs.impl.FinalRevisionCalculatorOptions
-
public class FinalRevisionCalculatorOptions extends Object
-
-
Constructor Summary
Constructors Constructor Description FinalRevisionCalculatorOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DagBasedRevisionCalculatorCache
getDagBasedRevisionCalculatorCache()
boolean
isCanTakeRevisionAboveMaxModId()
Returns true if we can analyze commit graph edge bindings above the maxModId.boolean
isLogCalculationToBuildLog()
Returns true if build revisions calculation should be logged into build log.void
setCanTakeRevisionAboveMaxModId(boolean canTakeRevisionAboveMaxModId)
Specifies whether we can analyze commit graph edge bindings above the maxModId and potentially select revision above the maxModId (to handle TW-51941).FinalRevisionCalculatorOptions
setLogCalculationToBuildLog(boolean logCalculationToBuildLog)
Specifies whether revisions calculation should be logged into build log.
-
-
-
Method Detail
-
isLogCalculationToBuildLog
public boolean isLogCalculationToBuildLog()
Returns true if build revisions calculation should be logged into build log.
-
setLogCalculationToBuildLog
@NotNull public FinalRevisionCalculatorOptions setLogCalculationToBuildLog(boolean logCalculationToBuildLog)
Specifies whether revisions calculation should be logged into build log. True by default.
-
isCanTakeRevisionAboveMaxModId
public boolean isCanTakeRevisionAboveMaxModId()
Returns true if we can analyze commit graph edge bindings above the maxModId.
-
setCanTakeRevisionAboveMaxModId
public void setCanTakeRevisionAboveMaxModId(boolean canTakeRevisionAboveMaxModId)
Specifies whether we can analyze commit graph edge bindings above the maxModId and potentially select revision above the maxModId (to handle TW-51941).
-
getDagBasedRevisionCalculatorCache
@NotNull public DagBasedRevisionCalculatorCache getDagBasedRevisionCalculatorCache()
-
-