Show UIEventPropagator.java syntax highlighted
package persister;
public interface UIEventPropagator {
/****************************************************************************************
* USERINTERACTION *
****************************************************************************************/
public void moveMouse(String name, int x, int y) throws NotConnectedException;
public void bringToFront(long id) throws NotConnectedException;
public void deleteRemoteMouse(long id) throws NotConnectedException;
public void sendKeystrokeOut(Keystroke ch) throws NotConnectedException;
/****************************************************************************************
* REMOTE COMMANDS *
****************************************************************************************/
// public void remoteConnect(String username, String password, sString path) throws NotConnectedException;
/****************************************************************************************
* LISTENER *
****************************************************************************************/
public void addPlannerUIChangeListener(PlannerUIChangeListener listener);
public void removePlannerUIChangeListener(PlannerUIChangeListener listener);
}
See more files for this project here