Uses of Class
net.jinx.action.input.InputDevice

Packages that use InputDevice
net.jinx.action.input   
net.jinx.gui   
 

Uses of InputDevice in net.jinx.action.input
 

Methods in net.jinx.action.input that return InputDevice
static InputDevice[] InputDevice.getDevices()
          Provides an array of InputDevice objects.
static InputDevice[] InputDevice.getDevices(Hierarchy base)
          Provides an array of InputDevice objects.
static InputDevice[] InputDevice.getDevices(InputDevice[] existingDevices)
          Provides an array of InputDevice objects.
static InputDevice[] InputDevice.getDevices(InputDevice[] existingDevices, Hierarchy base)
          Provides an array of InputDevice objects.
static InputDevice InputDevice.matchDevice(java.lang.String id, InputDevice[] devices)
          Attempts to match an InputDevice to it's ID string.
 

Methods in net.jinx.action.input with parameters of type InputDevice
static ControlID[] ControlBinder.bind(InputDevice[] devices, int[] lookingFor, float wait)
          Waits at most wait seconds, attempting to detect a difference in one or more of the controls in the array devices.
static InputDevice[] InputDevice.getDevices(InputDevice[] existingDevices)
          Provides an array of InputDevice objects.
static InputDevice[] InputDevice.getDevices(InputDevice[] existingDevices, Hierarchy base)
          Provides an array of InputDevice objects.
static void InputDevice.load(InputDevice[] devices, Hierarchy base)
          Calls load(base) on each InputDevice in the array of devices, using a sub-node named according to the device's unique ID (see the getID() method) and that device's order among those devices with an identical ID.
static InputDevice InputDevice.matchDevice(java.lang.String id, InputDevice[] devices)
          Attempts to match an InputDevice to it's ID string.
 void ActionMap.setInputDevices(InputDevice[] devices)
          Sets the array of InputDevices to map from.
static void InputDevice.store(InputDevice[] devices, Hierarchy base)
          Calls store(Hierarchy) on each InputDevice in the array of devices, using a sub-node named according to the device's unique ID (see the getID() method) and that device's order among those devices with an identical ID.
 java.lang.String ControlID.toString(InputDevice dev)
          Returns the following: getDeviceIndex() + ":" + dev.getName() + ":" + controlString();
 

Uses of InputDevice in net.jinx.gui
 

Methods in net.jinx.gui that return InputDevice
 InputDevice InputDevicePanel.getDevice()
           
 

Methods in net.jinx.gui with parameters of type InputDevice
 void InputDevicePanel.setDevice(InputDevice idev)
           
 void InputDeviceConfigPanel.setDevices(InputDevice[] devices)
           
 

Constructors in net.jinx.gui with parameters of type InputDevice
InputDeviceConfigPanel(InputDevice[] devices)
           
InputDevicePanel(InputDevice device)