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 DagBasedRevisionCalculatorCachegetDagBasedRevisionCalculatorCache()booleanisCanTakeRevisionAboveMaxModId()Returns true if we can analyze commit graph edge bindings above the maxModId.booleanisLogCalculationToBuildLog()Returns true if build revisions calculation should be logged into build log.voidsetCanTakeRevisionAboveMaxModId(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).FinalRevisionCalculatorOptionssetLogCalculationToBuildLog(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()
-
-