Uses of Class
model.Race

Packages that use Race
beans.backing   
beans.session   
model   
 

Uses of Race in beans.backing
 

Methods in beans.backing that return Race
 Race RaceScoringBean.getCurrentRace()
           
 Race ScoreboardBean.Column.getRace()
           
 

Constructors in beans.backing with parameters of type Race
ModifyRotationBean.Column(Race race, javax.faces.component.UIData rowDataModel, java.util.HashMap<Team,Boat> tp)
           
ScoreboardBean.Column(Race race, java.util.HashMap<Team,Result> tp)
           
 

Uses of Race in beans.session
 

Methods in beans.session that return Race
 Race ConverterHelper.findRace(int id)
           
 

Methods in beans.session with parameters of type Race
 void ConverterHelper.addRace(Race r)
           
 

Method parameters in beans.session with type arguments of type Race
 void ConverterHelper.setRaces(java.util.List<Race> races)
           
 

Uses of Race in model
 

Methods in model that return Race
 Race Division.findRace(int id)
           
 Race Result.getRace()
           
 

Methods in model that return types with arguments of type Race
 java.util.ArrayList<Race> Division.getRaces()
           
 

Methods in model with parameters of type Race
 void Division.addRace(Race r)
           
 void Result.setRace(Race race)
           
 

Method parameters in model with type arguments of type Race
 void Division.setRaces(java.util.ArrayList<Race> races)
           
 

Constructors in model with parameters of type Race
Result(int id, Race race, Boat boat, Team team, int position, int penaltyWeight, boolean penaltyIsAvg, Penalty penalty)