Uses of Class
edu.gac.mcs178.gack.domain.Person

Packages that use Person
edu.gac.mcs178.gack   
edu.gac.mcs178.gack.domain   
edu.gac.mcs178.gack.ui   
 

Uses of Person in edu.gac.mcs178.gack
 

Methods in edu.gac.mcs178.gack that return Person
 Person World.getPlayer()
           
 

Uses of Person in edu.gac.mcs178.gack.domain
 

Subclasses of Person in edu.gac.mcs178.gack.domain
 class AutoPerson
           
 class Witch
           
 class Wizard
           
 

Methods in edu.gac.mcs178.gack.domain that return Person
 Person Thing.getOwner()
           
 

Methods in edu.gac.mcs178.gack.domain that return types with arguments of type Person
 java.util.List<Person> Place.getOccupants()
           
 java.util.List<Person> Person.otherPeopleAtSamePlace()
           
 

Methods in edu.gac.mcs178.gack.domain with parameters of type Person
 void Witch.curse(Person person)
           
 void Place.gain(Person newPerson)
           
 void Place.lose(Person person)
           
 void Thing.setOwner(Person owner)
           
 void Witch.turnIntoFrog(Person person)
           
 

Method parameters in edu.gac.mcs178.gack.domain with type arguments of type Person
 void Person.greet(java.util.List<Person> people)
           
 

Uses of Person in edu.gac.mcs178.gack.ui
 

Constructors in edu.gac.mcs178.gack.ui with parameters of type Person
ChangePlayersNameActionListener(GraphicalUserInterface gui, Person player)
           
DropActionListener(GraphicalUserInterface gui, Person player, javax.swing.JComboBox dropJComboBox)
           
GiveActionListener(GraphicalUserInterface gui, Person player, javax.swing.JComboBox giveJComboBox)
           
GoActionListener(GraphicalUserInterface gui, Person player, javax.swing.JComboBox goJComboBox)
           
GraphicalUserInterface(Person player)
           
ListPossessionsActionListener(GraphicalUserInterface gui, Person player)
           
LookAroundActionListener(GraphicalUserInterface gui, Person player)
           
ReadActionListener(GraphicalUserInterface gui, Person player, javax.swing.JComboBox readJComboBox)
           
TakeActionListener(GraphicalUserInterface gui, Person player, javax.swing.JComboBox takeJComboBox)