Uses of Class
model.Penalty

Packages that use Penalty
beans.backing   
beans.session   
model   
 

Uses of Penalty in beans.backing
 

Methods in beans.backing that return Penalty
 Penalty RaceScoringBean.Row.getPenalty()
           
 Penalty RaceScoringBean.PenaltyRow.getPenalty()
           
 

Methods in beans.backing with parameters of type Penalty
 void RaceScoringBean.Row.setPenalty(Penalty penalty)
           
 void RaceScoringBean.PenaltyRow.setPenalty(Penalty penalty)
           
 

Uses of Penalty in beans.session
 

Methods in beans.session that return Penalty
 Penalty ConverterHelper.findPenalty(int id)
           
 

Methods in beans.session with parameters of type Penalty
 void ConverterHelper.addPenalty(Penalty p)
           
 

Method parameters in beans.session with type arguments of type Penalty
 void ConverterHelper.setPenalties(java.util.List<Penalty> penalties)
           
 

Uses of Penalty in model
 

Methods in model that return Penalty
 Penalty RuleSet.findPenalty(java.lang.String name)
           
 Penalty Result.getPenalty()
           
 Penalty RuleSet.getPenalty(int id)
           
 

Methods in model that return types with arguments of type Penalty
 java.util.ArrayList<Penalty> RuleSet.getPenalties()
           
 

Methods in model with parameters of type Penalty
 void RuleSet.addPenalty(Penalty penalty)
           
 void Result.setPenalty(Penalty penalty)
           
 

Method parameters in model with type arguments of type Penalty
 void RuleSet.setPenalties(java.util.ArrayList<Penalty> penalties)
           
 

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