com.jme.input
Class Input

java.lang.Object
  extended by com.jme.input.Input
Direct Known Subclasses:
JoystickInput, KeyInput, MouseInput

public abstract class Input
extends java.lang.Object

Superclass for all parts of the input system. Subclasses should provide a method called addListener with a specific listener type as parameter to subscribe event listeners.


Constructor Summary
Input()
           
 
Method Summary
abstract  void update()
          Poll data for this input system part (update the values) and send events to all listeners (events will not be generated if no listeners were added via addListener).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Input

public Input()
Method Detail

update

public abstract void update()
Poll data for this input system part (update the values) and send events to all listeners (events will not be generated if no listeners were added via addListener).