Lines Matching defs:startPoint
293 * @param startPoint a start point of the drag
302 public static void drag(Robot robot, Point startPoint, Point endPoint, int button) {
309 robot.mouseMove(startPoint.x, startPoint.y);
312 mouseMove(robot, startPoint, endPoint);
323 * @param startPoint a start point of the drag
326 public static void mouseMove(Robot robot, Point startPoint, Point endPoint) {
327 int dx = endPoint.x - startPoint.x;
328 int dy = endPoint.y - startPoint.y;
336 int x = startPoint.x;
337 int y = startPoint.y;