Uses of Class
game.Student

Packages that use Student
game Contains parts of the soccer game that are shared between teams and simulators. 
game.net Network interface abstraction layer. 
game.protocol Implementation of the SCORE protocol. 
simulator.model Interface to concrete simulator models, which represent the state of the SOCCER game and implements the physical simulation. 
simulator.model.debug A trivial implementation of the required simulator model interfaces for debugging purposes. 
team Top level for running teams. 
team.debug A simple implementation of the team for debugging purposes. 
 

Uses of Student in game
 

Methods in game that return Student
static Student Student.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Student[] Student.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of Student in game.net
 

Methods in game.net that return Student
 Student Team.getStudent()
           
 

Methods in game.net with parameters of type Student
 boolean SCORETeam.connect(java.lang.String host, Student sim, Student team)
           
 void Team.setStudent(Student stu)
           
 

Uses of Student in game.protocol
 

Methods in game.protocol that return Student
 Student SOCCER2008Request.getStudent()
           
 

Constructors in game.protocol with parameters of type Student
SOCCER2008Request(Student team)
           
 

Uses of Student in simulator.model
 

Methods in simulator.model that return Student
 Student ISimulatorView.getFieldName()
          Which simulator is the host.
 Student ISimulatorView.getTeamName(Side t)
          The name of each team.
 

Methods in simulator.model with parameters of type Student
 boolean ISimulatorTeam.connect(java.lang.String host, Student sim, Student team)
          Connect to host using Soccer2006 protocol.
 void ISimulatorNet.setTeams(Student west, Student east)
          Indicates which team is on each side.
 

Uses of Student in simulator.model.debug
 

Methods in simulator.model.debug that return Student
 Student SMfacade.getFieldName()
           
 Student SMfacade.getTeamName(Side t)
           
 

Methods in simulator.model.debug with parameters of type Student
 void SMfacade.setTeams(Student west, Student east)
           
 

Uses of Student in team
 

Methods in team that return Student
 Student ITeam.getTeam()
          Identify the creator of this team.
 

Uses of Student in team.debug
 

Methods in team.debug that return Student
 Student TeamMain.getTeam()