Uses of Class
at.wisch.joystick.ffeffect.Effect

Packages that use Effect
at.wisch.joystick   
at.wisch.joystick.ffeffect   
 

Uses of Effect in at.wisch.joystick
 

Methods in at.wisch.joystick that return types with arguments of type Effect
 java.util.HashSet<java.lang.Class<? extends Effect>> FFJoystick.getSupportedEffects()
          Gets a HashSet of supported effects by this controller.
 java.util.HashSet<java.lang.Class<? extends Effect>> AdvancedFFController.getSupportedEffects()
          Gets a HashSet of supported effects by this controller.
 

Methods in at.wisch.joystick with parameters of type Effect
 boolean FFJoystick.destroyEffect(Effect effect)
          Destroy effect: remove an effect from the device.
 boolean AdvancedFFController.destroyEffect(Effect effect)
          Destroy effect: remove an effect from the device.
 boolean FFJoystick.isEffectSupported(Effect effect)
          Checks if an effect is supported.
 boolean AdvancedFFController.isEffectSupported(Effect effect)
          Checks if an effect is supported.
 boolean FFJoystick.isPlaying(Effect effect)
          Checks if an effect is currently playing.
 boolean AdvancedFFController.isPlaying(Effect effect)
          Checks if an effect is currently playing.
 boolean FFJoystick.newEffect(Effect effect)
          Upload a new effect to the device.
 boolean AdvancedFFController.newEffect(Effect effect)
          Upload a new effect to the device.
 boolean FFJoystick.playEffect(Effect effect, int iterations)
          Playback an effect on the device.
 boolean AdvancedFFController.playEffect(Effect effect, int iterations)
          Playback an effect on the device.
 boolean FFJoystick.stopEffect(Effect effect)
          Stop an effect which is currently on the device.
 boolean AdvancedFFController.stopEffect(Effect effect)
          Stop an effect which is currently on the device.
 boolean FFJoystick.updateEffect(Effect effect)
          Update an effect which was already uploaded to the device.
 boolean AdvancedFFController.updateEffect(Effect effect)
          Update an effect which was already uploaded to the device.
 

Method parameters in at.wisch.joystick with type arguments of type Effect
 boolean FFJoystick.isEffectSupported(java.lang.Class<? extends Effect> effectClass)
          Checks if an effect is supported.
 boolean AdvancedFFController.isEffectSupported(java.lang.Class<? extends Effect> effectClass)
          Checks if an effect is supported.
 

Uses of Effect in at.wisch.joystick.ffeffect
 

Subclasses of Effect in at.wisch.joystick.ffeffect
 class ConditionEffect
          The Class ConditionEffect.
 class ConstantEffect
          The Class ConstantEffect.
 class CustomEffect
          Deprecated. CustomEffect is not supported for all controllers on all operating systems. Use a series of other effects instead.
 class DamperEffect
          The Class DamperEffect.
 class ExtendedEffect
          The Class ExtendedEffect.
 class FrictionEffect
          The Class FrictionEffect.
 class InertiaEffect
          The Class InertiaEffect.
 class PeriodicEffect
          The Class PeriodicEffect.
 class RampEffect
          The Class RampEffect.
 class SawtoothDownEffect
          The Class SawtoothDownEffect.
 class SawtoothUpEffect
          The Class SawtoothUpEffect.
 class SineEffect
          The Class SineEffect.
 class SpringEffect
          The Class SpringEffect.
 class SquareEffect
          The Class SquareEffect.
 class TriangleEffect
          The Class TriangleEffect.