Teampublic class Team extends Object
Fields Summary |
---|
private Person | coach | private List | players |
Methods Summary |
---|
public Person | getCoach()
return coach;
| public java.util.List | getPlayers()
return players;
| public void | setCoach(Person coach)
this.coach = coach;
| public void | setPlayers(java.util.List players)
this.players = players;
|
|