Uses of Class
rle.core.board.Locator

Packages that use Locator
rle.core.board   
rle.core.ui   
 

Uses of Locator in rle.core.board
 

Fields in rle.core.board declared as Locator
protected  Locator Thing.locator
           
 

Methods in rle.core.board that return Locator
 Locator ThingMoveEvent.getNewLoc()
           
 Locator ThingMoveEvent.getOldLoc()
           
 Locator ThingRemoveEvent.getOldLoc()
           
 Locator Thing.locator()
           
 

Methods in rle.core.board with parameters of type Locator
 void Thing.fireLocationChange(Locator oldLoc, Locator newLoc)
          Notify listeners that a Thing has changed locations.
 java.util.Set<Item> Board.items(Locator l)
           
 void Board.place(Thing t, Locator l)
          Associate Thing t with Locator l.
 java.util.List<Terrain> Board.terrains(Locator loc)
          Return the terrains intersecting a Locator.
 java.util.TreeSet<Thing> Board.things(Locator loc)
          Return the things intersecting a Locator.
 

Constructors in rle.core.board with parameters of type Locator
ThingMoveEvent(Thing obj, Locator oldLoc, Locator newLoc)
           
ThingRemoveEvent(Board b, Thing obj, Locator oldLoc)
           
 

Uses of Locator in rle.core.ui
 

Methods in rle.core.ui with parameters of type Locator
 java.util.Set<RLPoint> FieldOfViewEngine.lineOfSightPoints(Locator locator, int distance)
          Return a list of Things for which a line drawn from locator will not encounter any "opaque" locations and which is at most distance away.
 java.util.Set<RLPoint> FieldOfViewEngineBase.lineOfSightPoints(Locator locator, int distance)
          Compute and return the list of RLPoints in line-of-sight to the given region.
 void Camera.update(Locator l)
          Flag a region for update.
 void CameraBase.update(Locator l)
          Flag a region for update.