Class ChangeDetails
- java.lang.Object
-
- jetbrains.buildServer.controllers.changes.ChangeDetails
-
public class ChangeDetails extends Object
- Author:
- kir
-
-
Constructor Summary
Constructors Constructor Description ChangeDetails(FailedTestsBean test, Map<SBuildType,SBuild> firstBuilds, Set<VcsRootInstance> vcsRootInstances, List<BuildProblem> allProblems, int changedFilesCount, boolean problemCritical)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectBuildProblemsBean
getBuildProblemBean()
int
getChangedFilesCount()
List<BuildProblem>
getCompilationErrors()
Map<SBuildType,SBuild>
getFirstBuilds()
FailedTestsBean
getTest()
Set<VcsRootInstance>
getVcsRoots()
boolean
isBigProblem()
boolean
isProblemsSectionNeeded()
-
-
-
Constructor Detail
-
ChangeDetails
public ChangeDetails(@NotNull FailedTestsBean test, @NotNull Map<SBuildType,SBuild> firstBuilds, @NotNull Set<VcsRootInstance> vcsRootInstances, @NotNull List<BuildProblem> allProblems, int changedFilesCount, boolean problemCritical)
-
-
Method Detail
-
getTest
public FailedTestsBean getTest()
-
getCompilationErrors
public List<BuildProblem> getCompilationErrors()
-
getFirstBuilds
public Map<SBuildType,SBuild> getFirstBuilds()
-
getVcsRoots
public Set<VcsRootInstance> getVcsRoots()
-
getChangedFilesCount
public int getChangedFilesCount()
-
isProblemsSectionNeeded
public boolean isProblemsSectionNeeded()
-
isBigProblem
public boolean isBigProblem()
-
getBuildProblemBean
@Nullable public ProjectBuildProblemsBean getBuildProblemBean()
-
-