|
 |
|
|
Uses of Class org.eclipse.gmf.runtime.common.core.command.CommandResult
Methods in
org.eclipse.gmf.runtime.common.core.command that return
CommandResult
|
protected
CommandResult
|
UnexecutableCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
IdentityCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Does nothing and returns an OK command result. |
protected
CommandResult
|
CompositeCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Implements the execution logic by sequential execution of my children. |
protected abstract
CommandResult
|
AbstractCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Performs the actual work of executing this command. |
protected
CommandResult
|
UnexecutableCommand.
doRedoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
OneTimeCommand.
doRedoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Not redoable. |
protected
CommandResult
|
IdentityCommand.
doRedoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Does nothing and returns an OK command result. |
protected
CommandResult
|
CompositeCommand.
doRedoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
I redo by asking my children to redo, in forward order. |
protected abstract
CommandResult
|
AbstractCommand.
doRedoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Performs the actual work of redoing this command. |
protected
CommandResult
|
UnexecutableCommand.
doUndoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
OneTimeCommand.
doUndoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Not undoable. |
protected
CommandResult
|
IdentityCommand.
doUndoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Does nothing and returns an OK command result. |
protected
CommandResult
|
CompositeCommand.
doUndoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
I undo by asking my children to undo, in reverse order. |
protected abstract
CommandResult
|
AbstractCommand.
doUndoWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Performs the actual work of undoing this command. |
CommandResult
|
ICommand.
getCommandResult
()
Retrieves the result of executing, undoing, or redoing this command,
depending on which of these operations was last performed. |
CommandResult
|
CompositeCommand.
getCommandResult
()
|
CommandResult
|
AbstractCommand.
getCommandResult
()
|
static
CommandResult
|
CommandResult.
newCancelledCommandResult
()
Creates a new
IStatus.CANCEL command result with no return value. |
static
CommandResult
|
CommandResult.
newErrorCommandResult
(java.lang.String errorMessage)
Creates a new
IStatus.ERROR command result with no return value. |
static
CommandResult
|
CommandResult.
newErrorCommandResult
(java.lang.Throwable throwable)
Creates a new
IStatus.ERROR command result with no return value. |
static
CommandResult
|
CommandResult.
newOKCommandResult
()
Creates a new
IStatus.OK command result. |
static
CommandResult
|
CommandResult.
newOKCommandResult
(java.lang.Object result)
Creates a new
IStatus.OK command result with the specified return
value . |
static
CommandResult
|
CommandResult.
newWarningCommandResult
(java.lang.String warningMessage,
java.lang.Object result)
Creates a new
IStatus.WARNING command result with a return
value . |
Methods in
org.eclipse.gmf.runtime.diagram.core.commands that return
CommandResult
|
protected
CommandResult
|
UpdateGroupLocationCommand.
doExecuteWithResult
(
IProgressMonitor monitor,
IAdaptable info)
|
protected
CommandResult
|
UngroupCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
SetPropertyCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
SetConnectionEndsCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
SetConnectionAnchorsCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
RemoveBookmarkCommand.
doExecuteWithResult
(
IProgressMonitor monitor,
IAdaptable info)
|
protected
CommandResult
|
GroupCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
Creates the new group, reparents the nodes, and sets the locations of the
group and nodes as appropriate |
protected
CommandResult
|
DeleteCommand.
doExecuteWithResult
(
IProgressMonitor progressMonitor,
IAdaptable info)
|
protected
CommandResult
|
CreateDiagramCommand.
doExecuteWithResult
(
IProgressMonitor monitor,
IAdaptable info)
|
protected
CommandResult
|
AddCommand.
doExecuteWithResult
(
IProgressMonitor monitor,
IAdaptable info)
executes the command; which will get the child and the containaer from
the IAdaptable and then insert the child at the given index
in the containers child list. |
Guidelines for using Eclipse APIs.
Copyright (c) IBM Corp., Borland Software Corp., and others 2005,2006. All rights reserved.
|
|
|