Uses of Interface
de.unifreiburg.twodeedoo.view.IKeyHandler

Packages that use IKeyHandler
de.unifreiburg.twodeedoo.model Game model (actors) 
de.unifreiburg.twodeedoo.model.test Test helpers for the model layer. 
de.unifreiburg.twodeedoo.view Swing component to display scenes, schedule activities and dispatch keys. 
de.unifreiburg.twodeedoo.world A world simulator (like DrScheme's world teachpack) for twodeedoo. 
 

Uses of IKeyHandler in de.unifreiburg.twodeedoo.model
 

Subinterfaces of IKeyHandler in de.unifreiburg.twodeedoo.model
 interface IActor
          I simulate some well-defined part of the world.
 interface ICompositeActor
          A composite actor contains actors and runs them.
 

Classes in de.unifreiburg.twodeedoo.model that implement IKeyHandler
 class BaseActor
          Default base class for IActor implementations
 class CompositeActor
          Simple Composite of IActors.
 class LinearMotionActor
          I move my IPuppet along a linear path.
 

Uses of IKeyHandler in de.unifreiburg.twodeedoo.model.test
 

Classes in de.unifreiburg.twodeedoo.model.test that implement IKeyHandler
 class ErrorActivity
          Implementation of ICompositeActor which raises UnimplementedStubCalledException for each method call.
 

Methods in de.unifreiburg.twodeedoo.model.test that return IKeyHandler
 IKeyHandler FakeGameController.getKeyHandler()
           
 

Uses of IKeyHandler in de.unifreiburg.twodeedoo.view
 

Subinterfaces of IKeyHandler in de.unifreiburg.twodeedoo.view
 interface IActivity
          I'm a toplevel schedulable.
 

Classes in de.unifreiburg.twodeedoo.view that implement IKeyHandler
 class NullActivity
          An activity which does nothing.
 

Fields in de.unifreiburg.twodeedoo.view declared as IKeyHandler
static IKeyHandler IKeyHandler.NULL_OBJECT
          IKeyHandler which does nothing.
 

Uses of IKeyHandler in de.unifreiburg.twodeedoo.world
 

Classes in de.unifreiburg.twodeedoo.world that implement IKeyHandler
 class WorldAdapter
          Adapter from the world package's IWorld to twodeedoo's Activity+Painter.