All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface java.media.j3d.InputDevice

public interface interface InputDevice
A InputDevice object encapsulates the InputDevice's basic information.


Variable Index

 o POLLED
Specifies that the associated devices works in polled mode
 o STREAMING
Specifies that the associated devices works in streaming mode

Method Index

 o getNextDevice()
Get the next device following this device
 o getProcessingMode()
Retrieve the Device's processing mode
 o initialize()
Code to initialize the device
 o pollAndProcessInput()
Code to poll and process the device's input.
 o processStreamInput()
Code to process the device's streaming input.
 o setNextDevice(InputDevice)
Set this object's next device to be the specified device
 o setNominalPositionAndOrientation()
Code to set the device's current position and orientation as the devices nominal position and orientation(establish its reference frame relative to the "Tracker base" reference frame).
 o setProcessingMode(int)
Retrieve the Device's processing mode

Variables

 o POLLED
 public static final int POLLED
Specifies that the associated devices works in polled mode

 o STREAMING
 public static final int STREAMING
Specifies that the associated devices works in streaming mode

Methods

 o initialize
 public abstract boolean initialize()
Code to initialize the device

 o setNominalPositionAndOrientation
 public abstract void setNominalPositionAndOrientation()
Code to set the device's current position and orientation as the devices nominal position and orientation(establish its reference frame relative to the "Tracker base" reference frame).

 o pollAndProcessInput
 public abstract void pollAndProcessInput()
Code to poll and process the device's input.

 o processStreamInput
 public abstract void processStreamInput()
Code to process the device's streaming input.

 o getNextDevice
 public abstract InputDevice getNextDevice()
Get the next device following this device

Returns:
the next device
 o setNextDevice
 public abstract void setNextDevice(InputDevice device)
Set this object's next device to be the specified device

Parameters:
the - next device
 o getProcessingMode
 public abstract int getProcessingMode()
Retrieve the Device's processing mode

 o setProcessingMode
 public abstract void setProcessingMode(int mode)
Retrieve the Device's processing mode


All Packages  Class Hierarchy  This Package  Previous  Next  Index