blob: 547d4f7962e0959811444faaf0d045797555db30 [file] [log] [blame]
package org.eclipse.ui;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
/**
* Interface for actions contributed via an extension point.
* <p>
* This interface should be implemented by clients who need to contribute actions
* via an extension point. The workbench will generate a <b>proxy action</b>
* object on behalf of the plug-in to avoid having to activate the plug-in until
* the user needs it. If the action is performed the workbench will load the class
* that implements this interface and create what is called an <b>action
* delegate</b> object. Then the request, and all subsequent ones, are
* forwarded through the proxy action to the action delegate, which does the
* real work.
* </p><p>
* The proxy action is the one that appears in the UI, so the action delegate
* will need to talk to the proxy action in order to keep up an appropriate
* appearance. Once the action delegate has been created, it will be
* notified of all selection changes, allowing it to enable or disable the
* proxy action appropriately.
* </p><p>
* An action delegates cannot be consulted about selection changes before the
* action is performed because it does not exist. For this reason, control
* of action's enable state should also be exercised through simple XML rules
* contained in the extension. These rules allow enable state control before
* the action delegate's plug-in is loaded.
* </p>
*/
public interface IActionDelegate {
/**
* Performs this action.
* <p>
* This method is called when the delegating action has been triggered.
* Implement this method to do the actual work.
* </p>
*
* @param action the action proxy that handles the presentation portion of the
* action
*/
public void run(IAction action);
/**
* Notifies this action delegate that the selection in the workbench has changed.
* <p>
* Implementers can use this opportunity to change the availability of the
* action or to modify other presentation properties.
* </p>
*
* @param action the action proxy that handles presentation portion of
* the action
* @param selection the current selection, or <code>null</code> if there
* is no selection.
*/
public void selectionChanged(IAction action, ISelection selection);
}