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

Packages that use ISchedulable
de.unifreiburg.twodeedoo.model Game model (actors, activities) 
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. 
 

Uses of ISchedulable in de.unifreiburg.twodeedoo.model
 

Subinterfaces of ISchedulable in de.unifreiburg.twodeedoo.model
 interface IActivity
          A company contains actors and runs them.
 interface IActor
          I simulate some well-defined part of the world.
 

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

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

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

Uses of ISchedulable in de.unifreiburg.twodeedoo.view
 

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

Methods in de.unifreiburg.twodeedoo.view that return ISchedulable
 ISchedulable SceneView.getMainSchedulable()
           
 ISchedulable IGameController.getMainSchedulable()
          Get the ISchedulable which is scheduled for each frame.
 

Methods in de.unifreiburg.twodeedoo.view with parameters of type ISchedulable
 void SceneView.setMainSchedulable(ISchedulable mainSchedulable)
           
 void IGameController.setMainSchedulable(ISchedulable schedulable)
          Set the main schedulable.