util.rmi
Interface InputEventLinking

All Superinterfaces:
Remote
All Known Implementing Classes:
GestureRobot

public interface InputEventLinking
extends Remote

Applications that implement this interface may receive input events from an outside application and probably simulate the action with a Robot.


Method Summary
 void follow(InputEvent ie)
          The server receives an input event via this method.
 void setClientDimension(Dimension d)
          If this method is called, the server might be able to correctly translate mouse-movements if the display sizes differ.
 

Method Detail

follow

void follow(InputEvent ie)
            throws RemoteException
The server receives an input event via this method. Depending on the type, a Robot may be activated to move the mouse, press keys or buttons etc. on the server. It is within the responsiblity of the client to not swap the server with events.

Throws:
RemoteException

setClientDimension

void setClientDimension(Dimension d)
                        throws RemoteException
If this method is called, the server might be able to correctly translate mouse-movements if the display sizes differ.

Throws:
RemoteException