public class SensorInputAdaptor extends Object implements SensorButtonListener, SensorReadListener
| Constructor and Description |
|---|
SensorInputAdaptor() |
| Modifier and Type | Method and Description |
|---|---|
void |
clicked(SensorEvent e)
This method is currently not used by
SensorEventAgent,
but is included here for future possible development. |
void |
dragged(SensorEvent e)
This method is called with each invocation of the
dispatchEvents method of SensorEventAgent
if any button bound to the listener is down and has not changed
state since the last invocation. |
void |
pressed(SensorEvent e)
This method is called when a sensor's button is pressed.
|
void |
read(SensorEvent e)
This method is called each time the
dispatchEvents
method of SensorEventAgent is called and none of a
sensor's buttons have been handled by a button listener. |
void |
released(SensorEvent e)
This method is called when a sensor's button is released.
|
public void pressed(SensorEvent e)
SensorButtonListenerpressed in interface SensorButtonListenere - the sensor eventpublic void released(SensorEvent e)
SensorButtonListenerreleased in interface SensorButtonListenere - the sensor eventpublic void dragged(SensorEvent e)
SensorButtonListenerdispatchEvents method of SensorEventAgent
if any button bound to the listener is down and has not changed
state since the last invocation. The sensor value has not
necessarily changed from the last drag event.dragged in interface SensorButtonListenere - the sensor eventpublic void clicked(SensorEvent e)
SensorButtonListenerSensorEventAgent,
but is included here for future possible development. Its
implementations should remain empty for the present.clicked in interface SensorButtonListenerpublic void read(SensorEvent e)
SensorReadListenerdispatchEvents
method of SensorEventAgent is called and none of a
sensor's buttons have been handled by a button listener. The
sensor read value has not necessarily changed since the last read
event.read in interface SensorReadListenere - the sensor eventCopyright © 2016–2022 SciJava. All rights reserved.