Searched defs:mouseMove (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | RobotPeer.java | 48 * @see Robot#mouseMove(int, int) 50 void mouseMove(int x, int y); method in interface:RobotPeer
|
/openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
H A D | WRobotPeer.java | 48 public void mouseMove(int x, int y) { method in class:WRobotPeer
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XRobotPeer.java | 54 public void mouseMove(int x, int y) { method in class:XRobotPeer
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Robot.java | 52 * queue. For example, <code>Robot.mouseMove</code> will actually move 75 // location of robot's GC, used in mouseMove(), getPixelColor() and captureScreenImage() 102 * to Robot method calls like mouseMove and createScreenCapture will 202 public synchronized void mouseMove(int x, int y) { method in class:Robot 203 peer.mouseMove(gdLoc.x + x, gdLoc.y + y);
|
H A D | Component.java | 6731 return mouseMove(evt, evt.x, evt.y); 6792 public boolean mouseMove(Event evt, int x, int y) { method in class:Component
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CRobot.java | 64 public void mouseMove(int x, int y) { method in class:CRobot
|
/openjdk7/jdk/test/java/awt/regtesthelpers/ |
H A D | Util.java | 140 robot.mouseMove(bounds.x + bounds.width / 2, bounds.y + bounds.height / 2); 179 robot.mouseMove(p.x, p.y); 309 robot.mouseMove(startPoint.x, startPoint.y); 312 mouseMove(robot, startPoint, endPoint); 326 public static void mouseMove(Robot robot, Point startPoint, Point endPoint) { method in class:Util 344 robot.mouseMove(x, y); 360 robot.mouseMove(x, y);
|
Completed in 47 milliseconds