Uses of Interface
info.gridworld.grid.Grid

Packages that use Grid
info.gridworld.actor   
info.gridworld.grid   
info.gridworld.gui   
info.gridworld.world   
 

Uses of Grid in info.gridworld.actor
 

Methods in info.gridworld.actor that return Grid
 Grid<Actor> Actor.getGrid()
          Gets the grid in which this actor is located.
 

Methods in info.gridworld.actor with parameters of type Grid
 void Actor.putSelfInGrid(Grid<Actor> gr, Location loc)
          Puts this actor into a grid.
 

Constructors in info.gridworld.actor with parameters of type Grid
ActorWorld(Grid<Actor> grid)
          Constructs an actor world with a given grid.
 

Uses of Grid in info.gridworld.grid
 

Classes in info.gridworld.grid that implement Grid
 class AbstractGrid<E>
          AbstractGrid contains the methods that are common to grid implementations.
 class BoundedGrid<E>
          A BoundedGrid is a rectangular grid with a finite number of rows and columns.
 class UnboundedGrid<E>
          An UnboundedGrid is a rectangular grid with an unbounded number of rows and columns.
 

Uses of Grid in info.gridworld.gui
 

Methods in info.gridworld.gui with parameters of type Grid
 void GridPanel.setGrid(Grid<?> gr)
          Sets the grid being displayed.
 void WorldFrame.setGrid(Grid<T> newGrid)
          Sets a new grid for this world.
 

Uses of Grid in info.gridworld.world
 

Methods in info.gridworld.world that return Grid
 Grid<T> World.getGrid()
          Gets the grid managed by this world.
 

Methods in info.gridworld.world with parameters of type Grid
 void World.setGrid(Grid<T> newGrid)
          Sets the grid managed by this world.
 

Constructors in info.gridworld.world with parameters of type Grid
World(Grid<T> g)