Uses of Interface
de.unifreiburg.twodeedoo.model.IActivity

Packages that use IActivity
de.unifreiburg.twodeedoo.model Game model (actors, activities) 
de.unifreiburg.twodeedoo.model.test Test helpers for the model layer. 
 

Uses of IActivity in de.unifreiburg.twodeedoo.model
 

Classes in de.unifreiburg.twodeedoo.model that implement IActivity
 class SimpleActivity
          Simple Composite of IActors.
 

Methods in de.unifreiburg.twodeedoo.model that return IActivity
 IActivity BaseActor.getContainer()
          Get the container
 

Methods in de.unifreiburg.twodeedoo.model with parameters of type IActivity
 void BaseActor.setContainer(IActivity container)
          Change the container
 void IActor.setContainer(IActivity container)
          Set the container of this actor.
 void SimpleActivity.switchToActivity(IActivity otherActivity)
          Tell the IGameController that a different IActivity should be run.
 void IActivity.switchToActivity(IActivity otherActivity)
          Replace this activity with another activity.
 

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

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

Methods in de.unifreiburg.twodeedoo.model.test with parameters of type IActivity
 void ErrorActivity.switchToActivity(IActivity otherActivity)