I am trying to click Button from code. I am tying to do the following:
class MyMouseAdapter extends MouseAdapter
{
public void mouseDown(MouseEvent evt)
{
System.out.println("Working!!!!");
}
}
Button button = new Button();
button.addMouseListener(new MyMouseAdapter());
now I want to run the mouseDown method from code could you tell me how to do it?
Thank you.
You can do this:
button.notifyListeners( SWT.MouseDown, null );
Where null
is an Event
. Remember that this is the Event
received by your listener.
If you need all the listeners to be notified then you can try the below code,
yourbutton.notifyListeners(SWT.Selection, new Event());
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With