예제 #1
0
 public TNextMatchesResult getMatchesToRun(
     String tournamentInternalName,
     TSeeding initialSeeding,
     List<InternalAdminAction> adminActions,
     Set<InternalMatchResult> resultsSoFar) {
   FormatRunner runner = format.getRunner();
   return runner.getMatchesToRun(
       tournamentInternalName, initialSeeding, adminActions, stageNum, rounds, resultsSoFar);
 }
예제 #2
0
 public List<TRanking> getStandingsHistory(
     String tournamentInternalName,
     TSeeding initialSeeding,
     List<InternalAdminAction> adminActions,
     Set<InternalMatchResult> resultsSoFar) {
   return format
       .getRunner()
       .getStandingsHistory(
           tournamentInternalName, initialSeeding, adminActions, stageNum, rounds, resultsSoFar);
 }