Uses of Class
com.jme3.input.InputManager

Packages that use InputManager
com.jme3.app The com.jme3.application provides a toolset for jME3 applications to interact with various components of the engine. 
com.jme3.input The com.jme3.input package is used for all input handling in jMonkeyEngine. 
com.jme3.input.lwjgl   
com.jme3.niftygui   
 

Uses of InputManager in com.jme3.app
 

Fields in com.jme3.app declared as InputManager
protected  InputManager Application.inputManager
           
 

Methods in com.jme3.app that return InputManager
 InputManager Application.getInputManager()
           
 

Uses of InputManager in com.jme3.input
 

Fields in com.jme3.input declared as InputManager
protected  InputManager ChaseCamera.inputManager
           
protected  InputManager FlyByCamera.inputManager
           
 

Methods in com.jme3.input with parameters of type InputManager
 Joystick[] JoyInput.loadJoysticks(InputManager inputManager)
          Loads a list of joysticks from the system.
 void ChaseCamera.registerWithInput(InputManager inputManager)
          Registers inputs with the input manager
 void FlyByCamera.registerWithInput(InputManager inputManager)
          Registers the FlyByCamera to receive input events from the provided Dispatcher.
 

Constructors in com.jme3.input with parameters of type InputManager
ChaseCamera(Camera cam, InputManager inputManager)
          Constructs the chase camera, and registers inputs if you use this constructor you have to attach the cam later to a spatial doing spatial.addControl(chaseCamera);
ChaseCamera(Camera cam, Spatial target, InputManager inputManager)
          Constructs the chase camera, and registers inputs
Joystick(InputManager inputManager, JoyInput joyInput, int joyId, java.lang.String name, int buttonCount, int axisCount, int xAxis, int yAxis)
          Creates a new joystick instance.
 

Uses of InputManager in com.jme3.input.lwjgl
 

Methods in com.jme3.input.lwjgl with parameters of type InputManager
 Joystick[] JInputJoyInput.loadJoysticks(InputManager inputManager)
           
 

Uses of InputManager in com.jme3.niftygui
 

Constructors in com.jme3.niftygui with parameters of type InputManager
InputSystemJme(InputManager inputManager)
           
NiftyJmeDisplay(AssetManager assetManager, InputManager inputManager, AudioRenderer audioRenderer, ViewPort vp)