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

Packages that use ISchedulable
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 ISchedulable in de.unifreiburg.twodeedoo.model
 

Subinterfaces of ISchedulable 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 ISchedulable
 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 ISchedulable in de.unifreiburg.twodeedoo.model.test
 

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

Methods in de.unifreiburg.twodeedoo.model.test that return ISchedulable
 ISchedulable FakeGameController.getMainSchedulable()
           
 

Uses of ISchedulable in de.unifreiburg.twodeedoo.view
 

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

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

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

Uses of ISchedulable in de.unifreiburg.twodeedoo.world
 

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