Uses of Class
org.intranet.elevator.model.Location

Packages that use Location
org.intranet.elevator.model   
org.intranet.elevator.model.operate   
 

Uses of Location in org.intranet.elevator.model
 

Subclasses of Location in org.intranet.elevator.model
 class Car
          The states of Car are substates of MovableLocation:IDLE.
 class Floor
           
 class MovableLocation
          A location that can move.
 

Fields in org.intranet.elevator.model declared as Location
private  Location Door.from
           
private  Location Door.to
           
 

Methods in org.intranet.elevator.model that return Location
 Location Door.getFrom()
           
 Location Door.getTo()
           
 

Methods in org.intranet.elevator.model with parameters of type Location
 void Floor.createCarEntrance(Location destination)
           
 CarEntrance Floor.getCarEntranceForCar(Location destination)
           
 

Constructors in org.intranet.elevator.model with parameters of type Location
Door(EventQueue eQ, Location fromLocation, Location toLocation)
           
CarEntrance(EventQueue eQ, Location fromLocation, Location toLocation, CarEntrance.CarEntranceListener listener)
           
 

Uses of Location in org.intranet.elevator.model.operate
 

Fields in org.intranet.elevator.model.operate declared as Location
private  Location Person.currentLocation
           
 

Methods in org.intranet.elevator.model.operate with parameters of type Location
private  void Person.movePerson(Location destination)
          Move the person to the specified destination.
 Person Building.createPerson(Location startLocation)
           
 

Constructors in org.intranet.elevator.model.operate with parameters of type Location
Person(EventQueue eQ, Location startLocation)