Package org.eclipse.ui
Interface IActionDelegateWithEvent
-
@Deprecated public interface IActionDelegateWithEvent
Deprecated.Use org.eclipse.ui.IActionDelegate2 instead.This interface is a mixin interface for action delegates, adding the ability to examine the triggering SWT event when it is run. If an action delegate implements this interface, thenrunWithEvent(IAction, Event)
is called instead ofrun(IAction)
.Clients should implement this interface, in addition to
IActionDelegate
(or subinterface), if they need to examine the triggering event. Otherwise, they should simply implementIActionDelegate
(or subinterface).- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
runWithEvent(IAction action, Event event)
Deprecated.Use org.eclipse.ui.IActionDelegate2 instead.
-
-
-
Method Detail
-
runWithEvent
@Deprecated void runWithEvent(IAction action, Event event)
Deprecated.Use org.eclipse.ui.IActionDelegate2 instead.Performs this action, passing the SWT event which triggered it.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)
.- Parameters:
action
- the action proxy that handles the presentation portion of the actionevent
- the SWT event which triggered this action being run- Since:
- 2.0
-
-