we are trying to add Listener onto Widget and then trying to make the
Listener force to be called from other part.
Considering with a button, if we add Selection Listener on a Button
(needed codes are typed necessarily),
how do we call Selection Listener as if button was clicked from other
part (even though the real button was not clicked indeed).
button.addSelectionListener(new SelectionAdapter() { <====== the part
to be called
public void widgetSelected(final SelectionEvent e) }
});
if there is such a way to do it, please let me know
Thanks.