Uses of Interface
com.jme.input.joystick.Joystick

Packages that use Joystick
com.jme.input.controls.binding   
com.jme.input.joystick   
com.jme.input.joystick.lwjgl   
com.jme.input.thirdperson   
com.jmex.editors.swing.controls   
 

Uses of Joystick in com.jme.input.controls.binding
 

Constructors in com.jme.input.controls.binding with parameters of type Joystick
JoystickAxisBinding(Joystick joystick, int axis, boolean reverse)
           
JoystickButtonBinding(Joystick joystick, int button)
           
 

Uses of Joystick in com.jme.input.joystick
 

Classes in com.jme.input.joystick that implement Joystick
static class DummyJoystickInput.DummyJoystick
           
 

Fields in com.jme.input.joystick declared as Joystick
protected  Joystick JoystickInputHandlerDevice.joystick
           
 

Methods in com.jme.input.joystick that return Joystick
 Joystick DummyJoystickInput.getDefaultJoystick()
          This is a method to obtain a single joystick.
abstract  Joystick JoystickInput.getDefaultJoystick()
          This is a method to obtain a single joystick.
 Joystick DummyJoystickInput.getJoystick(int index)
          Game controller at specified index.
abstract  Joystick JoystickInput.getJoystick(int index)
          Game controller at specified index.
 

Methods in com.jme.input.joystick that return types with arguments of type Joystick
 java.util.ArrayList<Joystick> DummyJoystickInput.findJoysticksByAxis(java.lang.String... axis)
           
abstract  java.util.ArrayList<Joystick> JoystickInput.findJoysticksByAxis(java.lang.String... axis)
          Locate and return a joystick with the given axis names.
 

Methods in com.jme.input.joystick with parameters of type Joystick
 void JoystickInputListener.onAxis(Joystick controller, int axis, float axisValue)
          Invoked when an axis has changed it's value.
 void TriggersJoystickInputListener.onAxis(Joystick controller, int axis, float axisValue)
           
 void JoystickInputListener.onButton(Joystick controller, int button, boolean pressed)
          Invoked when a button was pressed or released.
 void TriggersJoystickInputListener.onButton(Joystick controller, int button, boolean pressed)
           
 

Constructors in com.jme.input.joystick with parameters of type Joystick
JoystickInputHandlerDevice.JoystickAxisTrigger(InputHandler handler, java.lang.String triggerName, InputActionInterface action, Joystick joystick, int axis, boolean allowRepeats)
           
JoystickInputHandlerDevice.JoystickButtonTrigger(InputHandler handler, java.lang.String triggerName, InputActionInterface action, Joystick joystick, int button, boolean allowRepeats)
           
JoystickInputHandlerDevice(Joystick joystick, java.lang.String name)
           
 

Uses of Joystick in com.jme.input.joystick.lwjgl
 

Classes in com.jme.input.joystick.lwjgl that implement Joystick
(package private)  class LWJGLJoystick
          LWJGL Implementation of Joystick.
 

Methods in com.jme.input.joystick.lwjgl that return Joystick
 Joystick LWJGLJoystickInput.getDefaultJoystick()
           
 Joystick LWJGLJoystickInput.getJoystick(int index)
           
 

Methods in com.jme.input.joystick.lwjgl that return types with arguments of type Joystick
 java.util.ArrayList<Joystick> LWJGLJoystickInput.findJoysticksByAxis(java.lang.String... axis)
           
 

Uses of Joystick in com.jme.input.thirdperson
 

Fields in com.jme.input.thirdperson declared as Joystick
protected  Joystick ThirdPersonJoystickPlugin.joystick
           
 

Methods in com.jme.input.thirdperson that return Joystick
 Joystick ThirdPersonJoystickPlugin.getJoystick()
           
 

Methods in com.jme.input.thirdperson with parameters of type Joystick
 void ThirdPersonJoystickPlugin.setJoystick(Joystick joystick)
           
 

Constructors in com.jme.input.thirdperson with parameters of type Joystick
ThirdPersonJoystickPlugin(Joystick j, int xAxis, int yAxis, int rotateAxis, int ascentAxis)
           
 

Uses of Joystick in com.jmex.editors.swing.controls
 

Methods in com.jmex.editors.swing.controls with parameters of type Joystick
 void ControlFieldListener.onAxis(Joystick controller, int axis, float axisValue)
           
 void ControlFieldListener.onButton(Joystick controller, int button, boolean pressed)