Uses of Class
net.jinx.action.ActorEvent

Packages that use ActorEvent
net.jinx.action   
net.jinx.action.input   
net.jinx.physics   
net.jinx.physics.fountain   
net.jinx.physics.gravity   
net.jinx.physics.spring   
 

Uses of ActorEvent in net.jinx.action
 

Subclasses of ActorEvent in net.jinx.action
 class ClockEvent
          ActorEvent subclass that delivers a change in time value.
 class ClockStateEvent
          ClockStateEvents are sent out by Clock to notify ClockSensitive and IdleSensitve Actors that the Clock's state has changed.
 class IdleEvent
          ClockEvent subclass that carries an interpolation value that can be used to interpolate between one Scene state and another.
 

Methods in net.jinx.action with parameters of type ActorEvent
protected  void Scene.deliverEvent(java.lang.String target, ActorEvent event)
          Delivers an ActorEvent to one or all of the Actors in this Scene.
protected  void VisibleActor.processEvent(ActorEvent event)
          Does nothing.
protected  void AudioRenderer.processEvent(ActorEvent event)
           
protected  void ActorView.processEvent(ActorEvent event)
          Does nothing.
protected  void VideoRenderer.processEvent(ActorEvent event)
          Processes Clock related events.
protected  void Clock.processEvent(ActorEvent event)
          Does nothing.
protected  void Scene.processEvent(ActorEvent event)
          Processes Clock related events and sends them to this Scene's children.
protected abstract  void Actor.processEvent(ActorEvent event)
          Processes an ActorEvent.
protected  void Actor.sendEvent(Actor target, ActorEvent event)
          Sends an ActorEvent directly to the target Actor.
protected  void Actor.sendEvent(java.util.Collection targets, ActorEvent event)
          Sends an ActorEvent to as many of the targets in the Collection as possible.
protected  void Actor.sendEvent(java.lang.String target, ActorEvent event)
          Sends an ActorEvent to the target in this Actor's Scene.
 

Uses of ActorEvent in net.jinx.action.input
 

Methods in net.jinx.action.input with parameters of type ActorEvent
protected  void Participant.processEvent(ActorEvent event)
          Ignores all events except ClockEvent instances.
 

Uses of ActorEvent in net.jinx.physics
 

Methods in net.jinx.physics with parameters of type ActorEvent
protected  void Universe.processEvent(ActorEvent event)
           
 

Uses of ActorEvent in net.jinx.physics.fountain
 

Methods in net.jinx.physics.fountain with parameters of type ActorEvent
protected  void ParticleFountain.processEvent(ActorEvent event)
           
 

Uses of ActorEvent in net.jinx.physics.gravity
 

Methods in net.jinx.physics.gravity with parameters of type ActorEvent
protected  void Gravity.processEvent(ActorEvent event)
          Does nothing.
 

Uses of ActorEvent in net.jinx.physics.spring
 

Methods in net.jinx.physics.spring with parameters of type ActorEvent
protected  void SpringSheet.processEvent(ActorEvent event)
           
protected  void SpringManager.processEvent(ActorEvent e)