Uses of Interface
de.unifreiburg.twodeedoo.scene.IScene

Packages that use IScene
de.unifreiburg.twodeedoo.model Game model (actors) 
de.unifreiburg.twodeedoo.scene Scene management (Scene, Puppets) 
de.unifreiburg.twodeedoo.scene.test Test helpers for the scene layer. 
 

Uses of IScene in de.unifreiburg.twodeedoo.model
 

Methods in de.unifreiburg.twodeedoo.model that return IScene
 IScene CompositeActor.getScene()
          Getter for scene.
 IScene BaseActor.getScene()
          Get the scene.
 

Methods in de.unifreiburg.twodeedoo.model with parameters of type IScene
 void CompositeActor.setScene(IScene scene)
          Setter for scene.
 void BaseActor.setScene(IScene scene)
          Set the scene
 

Constructors in de.unifreiburg.twodeedoo.model with parameters of type IScene
BaseActor(IScene scene)
           
CompositeActor(IScene scene)
          Create instance
LinearMotionActor(IScene scene, IPuppet puppet, int x0, int y0, double vx, double vy)
          Create a new actor.
 

Uses of IScene in de.unifreiburg.twodeedoo.scene
 

Classes in de.unifreiburg.twodeedoo.scene that implement IScene
 class SimpleScene
          Simple IScene as a composite of IPainters.
 

Fields in de.unifreiburg.twodeedoo.scene declared as IScene
static IScene IScene.NULL_OBJECT
          IScene which does nothing in a safe way.
 

Methods in de.unifreiburg.twodeedoo.scene with parameters of type IScene
 void IPuppet.setContainingScene(IScene scene)
          notify this puppet that it is now contained in a different scene.
 void AbstractPuppet.setContainingScene(IScene scene)
          Update my containment
 

Uses of IScene in de.unifreiburg.twodeedoo.scene.test
 

Methods in de.unifreiburg.twodeedoo.scene.test with parameters of type IScene
 void StubTextPuppet.setContainingScene(IScene scene)
          Not implemented.
 void StubPhasedPuppet.setContainingScene(IScene scene)
          Not implemented.