public interface DragRobot
| Modifier and Type | Method and Description |
|---|---|
void |
drag(javafx.scene.input.MouseButton... buttons)
Presses the given mouse button(s) on whatever is under the mouse's current location.
|
void |
drag(PointQuery pointQuery,
javafx.scene.input.MouseButton... buttons)
Moves the mouse to the location specified by the given
PointQuery.query() and then presses the
given mouse button(s) on whatever is under the mouse's new location. |
void |
drop()
Releases the mouse at its' current position.
|
void |
dropBy(double x,
double y)
Moves the mouse horizontally by
x and vertically by y before releasing the mouse. |
void |
dropTo(PointQuery pointQuery)
Moves the mouse to the location specified by the given
PointQuery.query() and then
releases the mouse. |
void drag(javafx.scene.input.MouseButton... buttons)
buttons - the mouse buttons to pressvoid drag(PointQuery pointQuery, javafx.scene.input.MouseButton... buttons)
PointQuery.query() and then presses the
given mouse button(s) on whatever is under the mouse's new location.pointQuery - the pointQuery that specifies where to move the mouse tobuttons - the mouse buttons to pressvoid drop()
void dropTo(PointQuery pointQuery)
PointQuery.query() and then
releases the mouse.pointQuery - the pointQuery that specifies where to move the mouse tovoid dropBy(double x,
double y)
x and vertically by y before releasing the mouse.x - the amount by which to move the mouse horizontallyy - the amount by which to move the mouse vertically