66676869707172
* @param y */ protected final void testPress(int x, int y) { logger.debug("Mouse clicked at "+x+","+y); new MouseClickEvent().notify(new Point(x,y)); } // end of testPress()
62636465666768
* @param y */ protected final void testPress(int x, int y) { System.out.println("Mouse clicked at "+x+","+y); new MouseClickEvent().notify(new Point(x,y)); } // end of testPress()
288289290291292293294
* @param y * @param type * @param button */ public void mouseClickEvent(final int x, final int y, final int type, final int button) { addEvent(new MouseClickEvent(x, y, type, button)); }
269270271272273274275
/** * @param type * @param button */ public void mouseClickEvent(final int type, final int button) { addEvent(new MouseClickEvent(this.lastKnownMousePosition.x, this.lastKnownMousePosition.y, type, button)); }
279280281282283284285
278279280281282283284