Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegateWithEvent.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegateWithEvent.java46
1 files changed, 24 insertions, 22 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegateWithEvent.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegateWithEvent.java
index fb2b940908d..786fd24bd3e 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegateWithEvent.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegateWithEvent.java
@@ -17,14 +17,15 @@ import org.eclipse.jface.action.IAction;
import org.eclipse.swt.widgets.Event;
/**
- * 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, then <code>runWithEvent(IAction, Event)</code>
- * is called instead of <code>run(IAction)</code>.
+ * 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, then <code>runWithEvent(IAction, Event)</code> is
+ * called instead of <code>run(IAction)</code>.
* <p>
- * Clients should implement this interface, in addition to <code>IActionDelegate</code>
- * (or subinterface), if they need to examine the triggering event.
- * Otherwise, they should simply implement <code>IActionDelegate</code> (or subinterface).
+ * Clients should implement this interface, in addition to
+ * <code>IActionDelegate</code> (or subinterface), if they need to examine the
+ * triggering event. Otherwise, they should simply implement
+ * <code>IActionDelegate</code> (or subinterface).
* <p>
*
* @since 2.0
@@ -33,20 +34,21 @@ import org.eclipse.swt.widgets.Event;
@Deprecated
public interface IActionDelegateWithEvent {
- /**
- * Performs this action, passing the SWT event which triggered it.
- * <p>
- * 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 <code>run(IAction)</code>.
- * <p>
- *
- * @param action the action proxy that handles the presentation portion of the action
- * @param event the SWT event which triggered this action being run
- * @since 2.0
- * @deprecated Use org.eclipse.ui.IActionDelegate2 instead.
- */
- @Deprecated void runWithEvent(IAction action, Event event);
+ /**
+ * Performs this action, passing the SWT event which triggered it.
+ * <p>
+ * 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 <code>run(IAction)</code>.
+ * <p>
+ *
+ * @param action the action proxy that handles the presentation portion of the
+ * action
+ * @param event the SWT event which triggered this action being run
+ * @since 2.0
+ * @deprecated Use org.eclipse.ui.IActionDelegate2 instead.
+ */
+ @Deprecated
+ void runWithEvent(IAction action, Event event);
}

Back to the top