Uses of Class
com.atlassian.bamboo.utils.Pair

Packages that use Pair
com.atlassian.bamboo.author   
com.atlassian.bamboo.build.tests   
com.atlassian.bamboo.resultsummary   
com.atlassian.bamboo.resultsummary.tests   
com.atlassian.bamboo.utils   
 

Uses of Pair in com.atlassian.bamboo.author
 

Methods in com.atlassian.bamboo.author that return Pair
static Pair<java.lang.Long,java.lang.Long> AuthorDuplicateNameHelper.getAuthorIdFromNameMarkerPattern(java.lang.String authorName)
          Decode original and duplicate author ids from the fake author name
 

Uses of Pair in com.atlassian.bamboo.build.tests
 

Methods in com.atlassian.bamboo.build.tests that return types with arguments of type Pair
 java.util.List<Pair<TestCase,java.lang.Float>> ViewTestsSummary.getLongestTimeToFixTests()
           
 java.util.List<Pair<TestCase,java.lang.Integer>> ViewTestsSummary.getMostFailingTests()
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> ViewTestsSummary.getRecentFailures(TestCase testCase, int number)
           
 

Uses of Pair in com.atlassian.bamboo.resultsummary
 

Methods in com.atlassian.bamboo.resultsummary that return types with arguments of type Pair
 java.util.List<Pair<ArtifactLink,BuildResultsSummary>> BuildResultsSummaryHibernateDao.findBuildResultsWithArtifacts(java.lang.String planKey)
           
 java.util.List<Pair<ArtifactLink,BuildResultsSummary>> BuildResultsSummaryDao.findBuildResultsWithArtifacts(java.lang.String planKey)
          Find all build results which have matching artifacts.
 

Uses of Pair in com.atlassian.bamboo.resultsummary.tests
 

Methods in com.atlassian.bamboo.resultsummary.tests that return types with arguments of type Pair
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManagerImpl.getLastNFailingResults(TestCase testCase, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManager.getLastNFailingResults(TestCase testCase, int number)
          Retrieve the last n failing testResults for this given test case, latest first.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManagerImpl.getLastNFailingResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManager.getLastNFailingResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
          Retrieve the last n failing testResults for this given test case, but only those that occurred within the provided build results.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsHibernateDao.getLastNFailingResultsForTestCase(TestCase testCase, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsDao.getLastNFailingResultsForTestCase(TestCase testCase, int number)
          Retrieve the last n failing testResults for this given test case, latest first.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsHibernateDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
          Retrieve the last n failing testResults for this given test case, but only those that occurred within the provided build results.
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManagerImpl.getLongestToFixTestCases(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManager.getLongestToFixTestCases(java.util.List<BuildResultsSummary> buildResults)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManagerImpl.getLongestToFixTestCases(Plan plan)
           
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManager.getLongestToFixTestCases(Plan plan)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsHibernateDao.getLongestToFixTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsDao.getLongestToFixTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsHibernateDao.getLongestToFixTestCasesForPlan(Plan plan)
           
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsDao.getLongestToFixTestCasesForPlan(Plan plan)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManagerImpl.getMostFailingTestCases(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManager.getMostFailingTestCases(java.util.List<BuildResultsSummary> buildResults)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManagerImpl.getMostFailingTestCases(Plan plan)
           
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManager.getMostFailingTestCases(Plan plan)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsHibernateDao.getMostFailingTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsDao.getMostFailingTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsHibernateDao.getMostFailingTestCasesForPlan(Plan plan)
           
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsDao.getMostFailingTestCasesForPlan(Plan plan)
          Provide a list of the top 10 most failing test cases for a plan.
 

Uses of Pair in com.atlassian.bamboo.utils
 

Methods in com.atlassian.bamboo.utils with parameters of type Pair
 int Pair.compareTo(Pair obj)
           
 



Copyright © 2010 Atlassian. All Rights Reserved.