Uses of Class
org.commonreality.modalities.motor.MovementCommand

Packages that use MovementCommand
org.commonreality.modalities.motor   
org.commonreality.sensors.keyboard   
org.commonreality.sensors.motor   
org.commonreality.sensors.motor.interpolator   
 

Uses of MovementCommand in org.commonreality.modalities.motor
 

Classes in org.commonreality.modalities.motor with type parameters of type MovementCommand
 class MovementCommandTemplate<M extends MovementCommand>
           
 

Subclasses of MovementCommand in org.commonreality.modalities.motor
 class RotateCommand
           
 class TranslateCommand
           
 

Uses of MovementCommand in org.commonreality.sensors.keyboard
 

Subclasses of MovementCommand in org.commonreality.sensors.keyboard
 class PressCommand
           
 class ReleaseCommand
           
 

Methods in org.commonreality.sensors.keyboard with parameters of type MovementCommand
 void DefaultActuator.abort(IAgentObject agent, MovementCommand movement, EfferentCommandHandler handler)
           
 void DefaultActuator.aborted(IAgentObject agent, MovementCommand command, java.lang.Object extraInfo)
           
 void DefaultActuator.completed(IAgentObject agent, MovementCommand command, java.lang.Object extraInfo)
           
 void DefaultActuator.start(IAgentObject agent, MovementCommand movement, EfferentCommandHandler handler)
           
 

Uses of MovementCommand in org.commonreality.sensors.motor
 

Methods in org.commonreality.sensors.motor with parameters of type MovementCommand
 void IActuator.abort(IAgentObject agent, MovementCommand movement, EfferentCommandHandler handler)
           
 void IActuator.start(IAgentObject agent, MovementCommand movement, EfferentCommandHandler handler)
           
 

Uses of MovementCommand in org.commonreality.sensors.motor.interpolator
 

Methods in org.commonreality.sensors.motor.interpolator that return MovementCommand
 MovementCommand InterpolatorEvent.getCommand()
           
 

Methods in org.commonreality.sensors.motor.interpolator with parameters of type MovementCommand
 void IInterpolator.abort(IAgentObject agent, MovementCommand command)
           
 void BasicInterpolator.abort(IAgentObject agent, MovementCommand command)
           
 void InterpolatorActuator.abort(IAgentObject agent, MovementCommand movement, EfferentCommandHandler handler)
           
 void IActuatorCompletion.aborted(IAgentObject agent, MovementCommand command, java.lang.Object extraInfo)
           
 void BasicActuatorCompletion.aborted(IAgentObject agent, MovementCommand command, java.lang.Object extraInfo)
           
 void IActuatorCompletion.completed(IAgentObject agent, MovementCommand command, java.lang.Object extraInfo)
           
 void BasicActuatorCompletion.completed(IAgentObject agent, MovementCommand command, java.lang.Object extraInfo)
           
 void IInterpolator.start(IAgentObject agent, MovementCommand command)
           
 void BasicInterpolator.start(IAgentObject agent, MovementCommand command)
           
 void InterpolatorActuator.start(IAgentObject agent, MovementCommand movement, EfferentCommandHandler handler)
           
 void IActuatorCompletion.updated(IAgentObject agent, MovementCommand command)
           
 void BasicActuatorCompletion.updated(IAgentObject agent, MovementCommand command)
           
 

Constructors in org.commonreality.sensors.motor.interpolator with parameters of type MovementCommand
InterpolatorEvent(MovementCommand command, double startTime, double endTime)