Uses of Class
model.School

Packages that use School
beans.app   
beans.backing   
beans.session   
model   
 

Uses of School in beans.app
 

Methods in beans.app that return School
 School Schools.getSchool(int id)
           
 

Methods in beans.app with parameters of type School
 void Schools.addSchool(School school, boolean custom)
           
static void Schools.insertSchool(School school)
           
 void Schools.replaceSchool(School s)
           
static void Schools.updateSchool(School school)
           
 

Uses of School in beans.backing
 

Methods in beans.backing that return School
 School EditRegattaBean.getHostSchool()
           
 School RPEntryBean.getSelectedSchool()
           
 School ParticipatingTeamsBean.getSelectedSchool()
           
 

Methods in beans.backing with parameters of type School
 void EditRegattaBean.setHostSchool(School hostSchool)
           
 void RPEntryBean.setSelectedSchool(School selectedSchool)
           
 void ParticipatingTeamsBean.setSelectedSchool(School selectedSchool)
           
 

Uses of School in beans.session
 

Methods in beans.session that return School
 School Regatta.getHostSchool()
           
 

Methods in beans.session with parameters of type School
 void Regatta.setHostSchool(School hostSchool)
           
 

Constructors in beans.session with parameters of type School
Regatta(java.lang.Integer regattaID, java.lang.String name, School host, java.util.Date startDate, java.util.Date endDate, boolean custom, RuleSet ruleSet, java.lang.String comments, int maxRaces)
           
 

Uses of School in model
 

Methods in model that return School
 School Team.getSchool()
           
 School Sailor.getSchool()
           
 

Methods in model with parameters of type School
 void Team.setSchool(School school)
           
 void Sailor.setSchool(School school)
           
 

Constructors in model with parameters of type School
Sailor(int id, School school, java.lang.String firstName, java.lang.String lastName, int gradYear)
           
Sailor(org.collegesailing.axis.Sailor sailor, School school)
           
Team(int id, java.lang.String name, School school)
           
Team(org.collegesailing.axis.Team team, School s)