Uses of Class
uchicago.src.sim.gui.DisplaySurface

Packages that use DisplaySurface
uchicago.src.sim.engine   
uchicago.src.sim.gui   
 

Uses of DisplaySurface in uchicago.src.sim.engine
 

Methods in uchicago.src.sim.engine with parameters of type DisplaySurface
 void SimModelImpl.registerDisplaySurface(java.lang.String name, DisplaySurface surface)
          Registers a DisplaySurface with this model and associates it with a particular name.
 

Uses of DisplaySurface in uchicago.src.sim.gui
 

Fields in uchicago.src.sim.gui declared as DisplaySurface
protected  DisplaySurface LayoutWithDisplay.display
           
protected  DisplaySurface Painter.surface
           
 

Methods in uchicago.src.sim.gui with parameters of type DisplaySurface
 void Painter.init(DisplaySurface s, int w, int h)
          Associates this Painter with the specified DisplaySurface and initializes the width and height.
 void LayoutWithDisplay.setDisplay(DisplaySurface surface)
          Setting the display surface (or passing it with the constructor) allows the graph layout to update the display to show the algorithm's convergence within the current tick.
 void SimGraphics.setDisplaySurface(DisplaySurface surface)
          Sets the display surface associated with this SimGraphics instance.
 

Constructors in uchicago.src.sim.gui with parameters of type DisplaySurface
DummyPainter(DisplaySurface surface)
          Creates a DummyPainter
FruchGraphLayout(java.util.List nodes, int width, int height, DisplaySurface surface, int updateEveryN)
          Constructs new FruchGraphLayout.
KamadaGraphLayout(java.util.List nodes, int width, int height, DisplaySurface surface, int updateEveryN)
          If the KamadaGraphLayout is passed a display, and a value for updateEveryN, it will call the display's updateDisplay() method on every Nth pass during the layout to provide visual feedback.
LayoutWithDisplay(java.util.List nodes, int width, int height, DisplaySurface surface)
          Constructs new LayoutWithDisplay.
LocalPainter(DisplaySurface s, int w, int h)
          Creates a LocalPainter using the specified displaySurface, and with the specified width and height.
Painter(DisplaySurface s, int w, int h)
          Creates a Painter using the specified displaySurface, and with the specified width and height.