Lines Matching defs:to

8  * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
37 * ought to be moved to {@link java.awt.Robot} class.
39 * ExtendedRobot uses delay {@link #getSyncDelay()} to make syncing threads with {@link #waitForIdle()}
42 * equal to the property value. If the property was not set 500 milliseconds default value is used.
62 //TODO: uncomment three lines below after moving functionality to java.awt.Robot
85 * to ExtendedRobot method calls like mouseMove and createScreenCapture will
89 * <li>share the same coordinate system to form a combined virtual screen</li>
90 * <li>use different coordinate systems to act as independent screens</li>
173 * @param delayValue Additional delay length in milliseconds to wait until thread
200 * now to the destination coordinates.
214 * now to the destination point.
226 * to the destination coordinates.
240 * Move the mouse in multiple steps from source point to the
253 * Move the mouse in multiple steps from source point to the
281 // Walk the mouse to the destination one step at a time
293 // Ensure the mouse moves to the right destination.
294 // The steps may have led the mouse to a slightly wrong place.
299 * Moves mouse pointer to given screen coordinates.
312 * The method successively moves mouse cursor to point with coordinates
313 * ({@code fromX}, {@code fromY}), presses mouse button 1, drag mouse to
336 * The method successively moves mouse cursor to point {@code from},
337 * presses mouse button 1, drag mouse to point {@code to} and releases
341 * @param to Destination point
347 public void dragAndDrop(Point from, Point to){
348 dragAndDrop(from.x, from.y, to.x, to.y);
356 * left or right shift key) will map to the left key.
358 * @param keycode Key to press (e.g. {@code KeyEvent.VK_A})
376 * @param c Character to be typed (e.g. {@code 'a'})
388 * @param symbols Array of characters to be typed
401 * @param s String to be typed