示例#1
0
 public League(String lg)
 {
     teams         = TeamsConnection.displayTeams(lg);
     league        = lg;
     lastChamp     = TeamsConnection.lastChampion(lg);
     topChampions  = TeamsConnection.top5Champions();
     topCupWinners = TeamsConnection.top5CupWinners();
     topCurrentLeagueAppearances = TeamsConnection.top10LeagueAppearances(lg, true);
     topCurrentLeagueScorers     = TeamsConnection.top10LeagueScorers(lg, true);
     topOverallLeagueAppearances = TeamsConnection.top10LeagueAppearances(lg, false);
     topOverallLeagueScorers     = TeamsConnection.top10LeagueScorers(lg, false);
     leagueForeignGoals          = TeamsConnection.LeagueGoalsFromForeigners(lg);
 }