Package | Description |
---|---|
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.
|
org.eclipse.jface.commands |
Provides JFace-specific support for commands.
|
org.eclipse.team.ui.mapping |
Application programming interfaces for working with resource mappings
Package Specification
This package specifies the API for working with resources mappings.
|
org.eclipse.text.undo |
Provides undo and redo support for a document.
|
org.eclipse.ui.commands | |
org.eclipse.ui.editors.text |
Provides a standard text editor and concrete document providers based
IFileBuffer and others directly handling IFile and
IStorage as editor input.
|
org.eclipse.ui.handlers |
Provides support for integrating handlers into the Eclipse workbench.
|
Modifier and Type | Method and Description |
---|---|
void |
IExecutionListener.postExecuteFailure(String commandId,
ExecutionException exception)
Notifies the listener that a command has failed to complete execution.
|
Modifier and Type | Method and Description |
---|---|
Object |
IHandler.execute(ExecutionEvent event)
Executes with the map of parameter values by name.
|
Object |
Command.execute(ExecutionEvent event)
Deprecated.
Please use
Command.executeWithChecks(ExecutionEvent)
instead. |
Object |
ParameterizedCommand.execute(Object trigger,
Object applicationContext)
Deprecated.
Please use
ParameterizedCommand.executeWithChecks(Object, Object)
instead. |
Object |
Command.executeWithChecks(ExecutionEvent event)
Executes this command by delegating to the current handler, if any.
|
Object |
ParameterizedCommand.executeWithChecks(Object trigger,
Object applicationContext)
Executes this command with its parameters.
|
Object |
ExecutionEvent.getObjectParameterForExecution(String parameterId)
Returns the object represented by the string value of the parameter with
the provided id.
|
Modifier and Type | Method and Description |
---|---|
IStatus |
IAdvancedUndoableOperation.computeRedoableStatus(IProgressMonitor monitor)
Return a status indicating the projected outcome of redoing the receiver.
|
IStatus |
TriggeredOperations.computeRedoableStatus(IProgressMonitor monitor) |
IStatus |
IAdvancedUndoableOperation.computeUndoableStatus(IProgressMonitor monitor)
Return a status indicating the projected outcome of undoing the receiver.
|
IStatus |
TriggeredOperations.computeUndoableStatus(IProgressMonitor monitor) |
IStatus |
IUndoableOperation.execute(IProgressMonitor monitor,
IAdaptable info)
Execute the operation.
|
abstract IStatus |
AbstractOperation.execute(IProgressMonitor monitor,
IAdaptable info) |
IStatus |
TriggeredOperations.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 |
IUndoableOperation.redo(IProgressMonitor monitor,
IAdaptable info)
Redo the operation.
|
abstract IStatus |
AbstractOperation.redo(IProgressMonitor monitor,
IAdaptable info) |
IStatus |
TriggeredOperations.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 |
IUndoableOperation.undo(IProgressMonitor monitor,
IAdaptable info)
Undo the operation.
|
abstract IStatus |
AbstractOperation.undo(IProgressMonitor monitor,
IAdaptable info) |
IStatus |
TriggeredOperations.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) |
Modifier and Type | Method and Description |
---|---|
Object |
ActionHandler.execute(ExecutionEvent event) |
Modifier and Type | Method and Description |
---|---|
Object |
MergeActionHandler.execute(ExecutionEvent event) |
Modifier and Type | Method and Description |
---|---|
void |
IDocumentUndoManager.redo()
Repeats the most recently rolled back text change.
|
void |
DocumentUndoManager.redo() |
void |
IDocumentUndoManager.undo()
Rolls back the most recently executed text change.
|
void |
DocumentUndoManager.undo() |
Modifier and Type | Method and Description |
---|---|
Object |
AbstractHandler.execute(ExecutionEvent event)
Deprecated.
|
Constructor and Description |
---|
ExecutionException(ExecutionException e)
Deprecated.
Constructs a new instance of
ExecutionException using an
instance of the new ExecutionException . |
Modifier and Type | Method and Description |
---|---|
Object |
FileBufferOperationHandler.execute(ExecutionEvent event) |
Modifier and Type | Method and Description |
---|---|
Object |
ShowPerspectiveHandler.execute(ExecutionEvent event) |
Object |
ShowViewHandler.execute(ExecutionEvent event) |
Object |
IHandlerService.executeCommand(ParameterizedCommand command,
Event event)
Executes the given parameterized command.
|
Object |
IHandlerService.executeCommand(String commandId,
Event event)
Executes the command with the given identifier and no parameters.
|
Guidelines for using Eclipse APIs. Copyright (c) IBM Corp. and others 2000, 2006. All rights reserved.