edu.kzoo.grid.gui
Class ActiveGridAppController

java.lang.Object
  |
  +--edu.kzoo.grid.gui.SteppedGridAppController
        |
        +--edu.kzoo.grid.gui.ActiveGridAppController

public class ActiveGridAppController
extends SteppedGridAppController

Grid GUI Support Package:
An ActiveGridAppController controls the running of a grid application. In each timestep it tells all of the objects in the grid to act. The objects in the grid should be instances of a class that redefines the act method to do something meaningful.

Version:
10 November 2004
Author:
Alyce Brady

Constructor Summary
ActiveGridAppController()
           
 
Method Summary
 void step()
          Advances the application one step by asking every object in the grid to act.
 
Methods inherited from class edu.kzoo.grid.gui.SteppedGridAppController
getGrid, hasReachedStoppingState, init, setGrid
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActiveGridAppController

public ActiveGridAppController()
Method Detail

step

public void step()
Advances the application one step by asking every object in the grid to act.

Specified by:
step in class SteppedGridAppController