Uses of Interface
uchicago.src.sim.gui.Displayable

Packages that use Displayable
uchicago.src.repastdemos.life   
uchicago.src.sim.gui   
 

Uses of Displayable in uchicago.src.repastdemos.life
 

Classes in uchicago.src.repastdemos.life that implement Displayable
 class InfiniteSpaceDisplay
          Display class for displaying InfiniteLifeSpaces.
 

Methods in uchicago.src.repastdemos.life that return Displayable
 Displayable Space.getDisplay()
           
 Displayable LifeSpace.getDisplay()
          Returns the Displayable appropriate for this space.
 Displayable InfiniteLifeSpace.getDisplay()
          Returns the Displayable appropriate for this space.
 

Uses of Displayable in uchicago.src.sim.gui
 

Classes in uchicago.src.sim.gui that implement Displayable
 class Display
          Abstract class upon which custom displays can be built.
 class Display2D
          Base class for all discrete 2D displays.
 class HexaDisplay2D
          Base class for two dimensional displays of hexagonal spaces.
 class MultiObject2DDisplay
          Displays IMulti2DGrid-s and the objects contained within them.
 class Network2DDisplay
          Displays nodes and links that inhabit a VectorSpace, that is, nodes (and their links) that do not inhabit a grid.
 class Network2DGridDisplay
          Displays a 2D grid of Drawable2DNodes and DrawableEDges.
 class Object2DDisplay
          Displays Discrete2DSpaces and the objects contained within them.
 class Object2DHexaDisplay
          Title: 2D Hexagonal Spaces Description: 2D Hexagonal space library Copyright: Copyright (c) 2001 Company: Harvard University Displays a hexagonal layout of Discrete2DSpaces and the objects contained within them.
 class TextDisplay
          A Display class that can be used to display lines of text on a DisplaySurface.
 class Value2DDisplay
          Displays 2d arrays of values (Integers or ints).
 class Value2DHexaDisplay
          Displays 2d arrays of values (Integers or ints).
 class VectorDisplay
          Used to display VectorSpaces - non-discrete spaces.
 

Methods in uchicago.src.sim.gui that return Displayable
 Displayable DisplaySurface.DisplayableOrder.getDisplayable()
           
 Displayable DisplayInfo.getDisplayable()
          Gets the displayble.
 

Methods in uchicago.src.sim.gui with parameters of type Displayable
 void Painter.addDisplayable(Displayable d)
          Adds a Displayable to the list of displayables to be displayed.
 void DisplaySurface.addDisplayable(Displayable display, java.lang.String name)
          Adds a Displayable to the list of displayables that are displayed when updateDisplay is called.
 void DisplaySurface.addDisplayable(Displayable display, java.lang.String name, int order)
          Adds a Displayable to the list of displayables that are displayed when updateDisplay is called.
 void DisplaySurface.addDisplayableProbeable(Displayable display, java.lang.String name)
          Adds the specified Displayable to the displayables list and the probeables list.
 void Painter.removeDisplayable(Displayable d)
          Removes a Displayable to the list of displayables to be displayed.
 void DisplaySurface.removeDisplayable(Displayable display)
          Removes the specified Displayable from the list of displayables to display
 void DisplaySurface.removeProbeableDisplayable(Displayable display)
          Removes the specified Displayable from the ist of displayables to display.
 

Constructors in uchicago.src.sim.gui with parameters of type Displayable
DisplayInfo(java.lang.String menuText, int id, Displayable d)
          Creates a new DisplayInfo with the specified menu text, id, and displayble.
DisplaySurface.DisplayableOrder(Displayable d, int o)