Uses of Class
org.eclipse.core.commands.ExecutionException

Packages that use ExecutionException
org.eclipse.core.commands Application programming interfaces for commands and handlers. 
org.eclipse.core.commands.operations Classes for the creation of undoable operations which can be added to an operations history and later be undone and redone. 
 

Uses of ExecutionException in org.eclipse.core.commands
 

Methods in org.eclipse.core.commands with parameters of type ExecutionException
 void CommandManager.firePostExecuteFailure(java.lang.String commandId, ExecutionException exception)
          Fires the postExecuteFailure event for executionListeners.
 void IExecutionListener.postExecuteFailure(java.lang.String commandId, ExecutionException exception)
          Notifies the listener that a command has failed to complete execution.
 

Methods in org.eclipse.core.commands that throw ExecutionException
 java.lang.Object IHandler.execute(ExecutionEvent event)
          Executes with the map of parameter values by name.
 java.lang.Object Command.execute(ExecutionEvent event)
          Deprecated. Please use Command.executeWithChecks(ExecutionEvent) instead.
 java.lang.Object ParameterizedCommand.execute(java.lang.Object trigger, java.lang.Object applicationContext)
          Deprecated. Please use ParameterizedCommand.executeWithChecks(Object, Object) instead.
 java.lang.Object Command.executeWithChecks(ExecutionEvent event)
          Executes this command by delegating to the current handler, if any.
 java.lang.Object ParameterizedCommand.executeWithChecks(java.lang.Object trigger, java.lang.Object applicationContext)
          Executes this command with its parameters.
 java.lang.Object ExecutionEvent.getObjectParameterForExecution(java.lang.String parameterId)
          Returns the object represented by the string value of the parameter with the provided id.
 

Uses of ExecutionException in org.eclipse.core.commands.operations
 

Methods in org.eclipse.core.commands.operations that throw ExecutionException
 IStatus IAdvancedUndoableOperation2.computeExecutionStatus(IProgressMonitor monitor)
          Return a status indicating the projected outcome of executing the receiver.
 IStatus TriggeredOperations.computeRedoableStatus(IProgressMonitor monitor)
           
 IStatus IAdvancedUndoableOperation.computeRedoableStatus(IProgressMonitor monitor)
          Return a status indicating the projected outcome of redoing the receiver.
 IStatus TriggeredOperations.computeUndoableStatus(IProgressMonitor monitor)
           
 IStatus IAdvancedUndoableOperation.computeUndoableStatus(IProgressMonitor monitor)
          Return a status indicating the projected outcome of undoing the receiver.
 IStatus TriggeredOperations.execute(IProgressMonitor monitor, IAdaptable info)
           
 IStatus IUndoableOperation.execute(IProgressMonitor monitor, IAdaptable info)
          Execute the operation.
abstract  IStatus AbstractOperation.execute(IProgressMonitor monitor, IAdaptable info)
           
 IStatus IOperationHistory.execute(IUndoableOperation operation, IProgressMonitor monitor, IAdaptable info)
           Execute the specified operation and add it to the operations history if successful.
 IStatus DefaultOperationHistory.execute(IUndoableOperation operation, IProgressMonitor monitor, IAdaptable info)
           
 IStatus TriggeredOperations.redo(IProgressMonitor monitor, IAdaptable info)
           
 IStatus IUndoableOperation.redo(IProgressMonitor monitor, IAdaptable info)
          Redo the operation.
abstract  IStatus AbstractOperation.redo(IProgressMonitor monitor, IAdaptable info)
           
 IStatus IOperationHistory.redo(IUndoContext context, IProgressMonitor monitor, IAdaptable info)
           Redo the most recently undone operation in the given context.
 IStatus DefaultOperationHistory.redo(IUndoContext context, IProgressMonitor monitor, IAdaptable info)
           
 IStatus IOperationHistory.redoOperation(IUndoableOperation operation, IProgressMonitor monitor, IAdaptable info)
           Redo the specified operation.
 IStatus DefaultOperationHistory.redoOperation(IUndoableOperation operation, IProgressMonitor monitor, IAdaptable info)
           
 IStatus TriggeredOperations.undo(IProgressMonitor monitor, IAdaptable info)
           
 IStatus IUndoableOperation.undo(IProgressMonitor monitor, IAdaptable info)
          Undo the operation.
abstract  IStatus AbstractOperation.undo(IProgressMonitor monitor, IAdaptable info)
           
 IStatus IOperationHistory.undo(IUndoContext context, IProgressMonitor monitor, IAdaptable info)
           Undo the most recently executed operation in the given context.
 IStatus DefaultOperationHistory.undo(IUndoContext context, IProgressMonitor monitor, IAdaptable info)
           
 IStatus IOperationHistory.undoOperation(IUndoableOperation operation, IProgressMonitor monitor, IAdaptable info)
           Undo the specified operation.
 IStatus DefaultOperationHistory.undoOperation(IUndoableOperation operation, IProgressMonitor monitor, IAdaptable info)