Example #1
0
 /**
  * Move the mouse on the screen.
  *
  * @param x x position on the screen
  * @param y y position on the screen
  * @see java.awt.Robot#mouseMove(int x, int y)
  */
 public void mouseMove(int x, int y) {
   robot.mouseMove(x, y);
 }