Interface IOperationApprover2
- All Superinterfaces:
IOperationApprover
IOperationApprover
to approve the execution of a particular
operation within an operation history. Operations that are candidates for
execution have already been validated against their current state and
according to the rules of the history. Prior to 3.2, an operation approver
was only consulted for undo and redo of an operation, not its initial
execution.
By the time an IOperationApprover2 is consulted, the execution has already
been requested and it has been determined that the operation is valid.
Approvers should return an IStatus
object with severity
OK
if the operation should proceed, and any other severity if
it should not. When an operation is not approved, it is expected that the
object not allowing the operation has already consulted the user if necessary
or otherwise provided any necessary information to the user about the fact
that the operation is not approved.
Like IOperationApprover
, implementers of this extension must be
prepared to receive the approval messages from a background thread. Any UI
access occurring inside the implementation must be properly synchronized
using the techniques specified by the client's widget library.
- Since:
- 3.2
-
Method Summary
Modifier and TypeMethodDescriptionproceedExecuting
(IUndoableOperation operation, IOperationHistory history, IAdaptable info) Return a status indicating whether the specified operation should be executed.Methods inherited from interface org.eclipse.core.commands.operations.IOperationApprover
proceedRedoing, proceedUndoing
-
Method Details
-
proceedExecuting
Return a status indicating whether the specified operation should be executed. Any status that does not have severityIStatus.OK
will not be approved. Implementers should not assume that the execution will be performed when the status isOK
, since other operation approvers may veto the execution.- Parameters:
operation
- the operation to be executedhistory
- the history performing the execution of the operationinfo
- the IAdaptable (ornull
) provided by the caller in order to supply UI information for prompting the user if necessary. When this parameter is notnull
, it should minimally contain an adapter for the org.eclipse.swt.widgets.Shell.class. Even if UI information is provided, the implementation of this method must be prepared for being called from a background thread. Any UI access must be properly synchronized using the techniques specified by the client's widget library.- Returns:
- the IStatus describing whether the operation is approved. The
execution will not proceed if the status severity is not
OK
, and the caller requesting the execution will be returned the status that caused the rejection. Any other status severities will not be interpreted by the history.
-