Class MouseEventDriver
java.lang.Object
org.netbeans.jemmy.drivers.LightSupportiveDriver
org.netbeans.jemmy.drivers.input.EventDriver
org.netbeans.jemmy.drivers.input.MouseEventDriver
- All Implemented Interfaces:
LightDriver, MouseDriver
MouseDriver using event dispatching.
- Author:
- Alexandre Iline(alexandre.iline@sun.com)
-
Nested Class Summary
Nested classes/interfaces inherited from class EventDriver
EventDriver.Dispatcher -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a MouseEventDriver object.MouseEventDriver(String[] supported) Constructs a MouseEventDriver object. -
Method Summary
Modifier and TypeMethodDescriptionvoidclickMouse(ComponentOperator oper, int x, int y, int clickCount, int mouseButton, int modifiers, Timeout mouseClick) Clicks mouse.protected voiddispatchEvent(Component comp, int id, int modifiers, int x, int y, int clickCount, int mouseButton) Dispatches a mouse event to the component.voiddragMouse(ComponentOperator oper, int x, int y, int mouseButton, int modifiers) Drags mouse.voiddragNDrop(ComponentOperator oper, int start_x, int start_y, int end_x, int end_y, int mouseButton, int modifiers, Timeout before, Timeout after) Performs drag'n'drop.voidenterMouse(ComponentOperator oper) Moves mouse inside a component.voidexitMouse(ComponentOperator oper) Moves mouse outside a component.voidmoveMouse(ComponentOperator oper, int x, int y) Moves mouse.voidpressMouse(ComponentOperator oper, int x, int y, int mouseButton, int modifiers) Presses mouse.voidreleaseMouse(ComponentOperator oper, int x, int y, int mouseButton, int modifiers) Releases mouse.Methods inherited from class EventDriver
checkVisibility, dispatchEventMethods inherited from class LightSupportiveDriver
checkSupported, getSupported
-
Constructor Details
-
MouseEventDriver
Constructs a MouseEventDriver object.- Parameters:
supported- an array of supported class names
-
MouseEventDriver
public MouseEventDriver()Constructs a MouseEventDriver object.
-
-
Method Details
-
pressMouse
Description copied from interface:MouseDriverPresses mouse.- Specified by:
pressMousein interfaceMouseDriver- Parameters:
oper- Component operator.x- Relative x coordinate.y- Relative y coordinate.mouseButton- mouse button (InputEvent.BUTTON*_MASKfield)modifiers- a combination ofInputEvent.*_MASKfields.
-
releaseMouse
Description copied from interface:MouseDriverReleases mouse.- Specified by:
releaseMousein interfaceMouseDriver- Parameters:
oper- Component operator.x- Relative x coordinate.y- Relative y coordinate.mouseButton- mouse button (InputEvent.BUTTON*_MASKfield)modifiers- a combination ofInputEvent.*_MASKfields.
-
moveMouse
Description copied from interface:MouseDriverMoves mouse.- Specified by:
moveMousein interfaceMouseDriver- Parameters:
oper- Component operator.x- Relative x coordinate.y- Relative y coordinate.
-
clickMouse
public void clickMouse(ComponentOperator oper, int x, int y, int clickCount, int mouseButton, int modifiers, Timeout mouseClick) Description copied from interface:MouseDriverClicks mouse.- Specified by:
clickMousein interfaceMouseDriver- Parameters:
oper- Component operator.x- Relative x coordinate.y- Relative y coordinate.clickCount- How many times to click.mouseButton- mouse button (InputEvent.BUTTON*_MASKfield)modifiers- a combination ofInputEvent.*_MASKfields.mouseClick- Time between pressing and releasing mouse.
-
dragMouse
Description copied from interface:MouseDriverDrags mouse.- Specified by:
dragMousein interfaceMouseDriver- Parameters:
oper- Component operator.x- Relative x coordinate.y- Relative y coordinate.mouseButton- mouse button (InputEvent.BUTTON*_MASKfield)modifiers- a combination ofInputEvent.*_MASKfields.
-
dragNDrop
public void dragNDrop(ComponentOperator oper, int start_x, int start_y, int end_x, int end_y, int mouseButton, int modifiers, Timeout before, Timeout after) Description copied from interface:MouseDriverPerforms drag'n'drop.- Specified by:
dragNDropin interfaceMouseDriver- Parameters:
oper- Component operator.start_x- Relative x coordinate of start point.start_y- Relative y coordinate of start point.end_x- Relative x coordinate of end point.end_y- Relative y coordinate of end point.mouseButton- mouse button (InputEvent.BUTTON*_MASKfield)modifiers- a combination ofInputEvent.*_MASKfields.before- Time to sleep after taking (before dragging)after- Time to sleep before dropping (after dragging)
-
enterMouse
Description copied from interface:MouseDriverMoves mouse inside a component.- Specified by:
enterMousein interfaceMouseDriver- Parameters:
oper- Component operator.
-
exitMouse
Description copied from interface:MouseDriverMoves mouse outside a component.- Specified by:
exitMousein interfaceMouseDriver- Parameters:
oper- Component operator.
-
dispatchEvent
protected void dispatchEvent(Component comp, int id, int modifiers, int x, int y, int clickCount, int mouseButton) Dispatches a mouse event to the component.- Parameters:
comp- Component to dispatch events to.id- an event id.modifiers- a combination ofInputEvent.*_MASKfields.x- relative x coordinate of event pointy- relative y coordinate of event pointclickCount- click countmouseButton- mouse button.
-