@Deprecated public interface IActionDelegateWithEvent
runWithEvent(IAction, Event)
is called instead of run(IAction)
.
Clients should implement this interface, in addition to IActionDelegate
(or subinterface), if they need to examine the triggering event.
Otherwise, they should simply implement IActionDelegate
(or subinterface).
Modifier and Type | Method and Description |
---|---|
void |
runWithEvent(IAction action,
Event event)
Deprecated.
Use org.eclipse.ui.IActionDelegate2 instead.
|
@Deprecated void runWithEvent(IAction action, Event event)
This method is called when the delegating action has been triggered.
Implement this method to do the actual work.
If an action delegate implements this interface, this method
is called instead of run(IAction)
.
action
- the action proxy that handles the presentation portion of the actionevent
- the SWT event which triggered this action being run
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.