Searched defs:startPoint (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java63 private Point startPoint; field in class:RangeSlider
246 int newFirstX = firstX + e.getPoint().x - startPoint.x;
340 startPoint = e.getPoint();
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java293 * @param startPoint a start point of the drag
302 public static void drag(Robot robot, Point startPoint, Point endPoint, int button) { argument
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) { argument
327 int dx = endPoint.x - startPoint.x;
328 int dy = endPoint.y - startPoint.y;
336 int x = startPoint
[all...]

Completed in 793 milliseconds