rle.core.ui
Interface Perspective

All Superinterfaces:
GameContextListener, PlugIn
All Known Subinterfaces:
PlayPerspective
All Known Implementing Classes:
PerspectiveBase, PlayPerspectiveBase, SimplePlayPerspective, TextFilePerspective

public interface Perspective
extends PlugIn, GameContextListener

PlugIn interface for objects that render and control the ui the user sees.


Method Summary
 javax.swing.JComponent getComponent()
          The component added to the main window.
 void installPerspective()
          Install this perspective for the current GameContext.
 void uninstallPerspective()
          Uninstall this perspective.
 
Methods inherited from interface rle.core.vm.PlugIn
config, getContext, paramMap, setConfig, setParameters
 
Methods inherited from interface rle.core.event.GameContextListener
boardChange, commandSetChange, languageChange
 

Method Detail

getComponent

javax.swing.JComponent getComponent()
The component added to the main window.


installPerspective

void installPerspective()
Install this perspective for the current GameContext.


uninstallPerspective

void uninstallPerspective()
Uninstall this perspective. This method needs to perform any cleanup necessary to make it as if it was never used. In particular, all related listeners must be removed from the board, context, game clock, etc.