Lines Matching defs:players
62 Collection players = null;
65 players = playerHome.findByTest(parm1, parm2, parm3);
70 return copyPlayersToDetails(players);
137 Collection players = null;
140 players = team.getPlayers();
145 return copyPlayersToDetails(players);
195 Collection players = null;
198 players = playerHome.findByPosition(position);
203 return copyPlayersToDetails(players);
210 Collection players = null;
213 players = playerHome.findByHigherSalary(name);
218 return copyPlayersToDetails(players);
224 Collection players = null;
227 players = playerHome.findBySalaryRange(low, high);
232 return copyPlayersToDetails(players);
238 Collection players = null;
242 players = playerHome.findByLeague(league);
247 return copyPlayersToDetails(players);
253 Collection players = null;
256 players = playerHome.findBySport(sport);
261 return copyPlayersToDetails(players);
267 Collection players = null;
270 players = playerHome.findByCity(city);
275 return copyPlayersToDetails(players);
281 Collection players = null;
284 players = playerHome.findAll();
289 return copyPlayersToDetails(players);
295 Collection players = null;
298 players = playerHome.findNotOnTeam();
303 return copyPlayersToDetails(players);
310 Collection players = null;
313 players = playerHome.findByPositionAndName(position, name);
318 return copyPlayersToDetails(players);
506 private ArrayList copyPlayersToDetails(Collection players) {
509 Iterator i = players.iterator();
713 Set players;
717 players = league.getPlayersFromLeague();
723 return copyPlayersToDetails(players);
732 Collection players = null;
735 players = playerHome.findByPositionsGoalkeeperOrDefender();
741 return copyPlayersToDetails(players);
750 Collection players = null;
753 players = playerHome.findByNameEndingWithON();
759 return copyPlayersToDetails(players);
768 Collection players = null;
771 players = playerHome.findByNullName();
777 return copyPlayersToDetails(players);
790 Collection players = null;
794 players = playerHome.findByTeam(team);
800 return copyPlayersToDetails(players);
838 Collection players = null;
841 players = playerHome.findBySalarayWithArithmeticFunctionABS(salary);
847 return copyPlayersToDetails(players);
858 Collection players = null;
861 players = playerHome.findBySalarayWithArithmeticFunctionSQRT(salary);
867 return copyPlayersToDetails(players);
875 Collection players = null;
879 players = playerHome.findByLeague(league);
884 return copyPlayersToDetails(players);