RobotPeerpublic interface RobotPeer RobotPeer defines an interface whereby toolkits support automated testing
by allowing native input events to be generated from Java code.
This interface should not be directly imported by code outside the
java.awt.* hierarchy; it is not to be considered public and is subject
to change. |
Methods Summary |
---|
public int | getRGBPixel(int x, int y)
| public int[] | getRGBPixels(java.awt.Rectangle bounds)
| public void | keyPress(int keycode)
| public void | keyRelease(int keycode)
| public void | mouseMove(int x, int y)
| public void | mousePress(int buttons)
| public void | mouseRelease(int buttons)
| public void | mouseWheel(int wheelAmt)
|
|