Uses of Class
org.starhope.appius.game.Room

Packages that use Room
org.starhope.appius.game   
 

Uses of Room in org.starhope.appius.game
 

Fields in org.starhope.appius.game with type parameters of type Room
protected  ConcurrentSkipListSet<Room> GameEvent.rooms
          The rooms which this GameEvent controls
private  ConcurrentHashMap<Integer,Room> Zone.roomsByID
          All rooms in the Zone: sorted by ID.
private  ConcurrentHashMap<String,Room> Zone.roomsByMoniker
          All rooms in the Zone: sorted by moniker.
protected  ConcurrentSkipListSet<Room> GameEvent.scoreWatchRooms
          The rooms which this GameEvent will report the score to (in addition to GameEvent.rooms) scoreWatchRooms (GameEvent)
 

Methods in org.starhope.appius.game that return Room
static Room Room.create(String roomName, AbstractZone zone)
          TODO: document this method (brpocock, Oct 19, 2009)
static Room Room.create(String roomName, AbstractZone abstractZone, boolean mustExist)
           
static Room Room.getByMoniker(String moniker, Zone zone)
           
 Room Zone.getRoom(Integer room)
          This is an overriding method.
 Room Zone.getRoomByName(String string)
          This is an overriding method.
 

Methods in org.starhope.appius.game that return types with arguments of type Room
 Set<Room> GameEvent.getRooms()
          Get all of the rooms participating in this GameEvent
 Set<Room> GameEvent.getScoreWatchRooms()
          Get all of the rooms which are either participating in this GameEvent, or monitoring its scores