public class SelectOperation extends AbstractOperation implements ITransactionalOperation
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
DEFAULT_LABEL
"change-selection"
The default label for this operation (i.e. used if no label is
specified).
|
Constructor and Description |
---|
SelectOperation(IViewer viewer,
java.util.List<? extends IContentPart<? extends javafx.scene.Node>> toBeSelected)
Creates a new
SelectOperation to change the selection within the
given IViewer to prepend the given content parts. |
SelectOperation(java.lang.String label,
IViewer viewer,
java.util.List<? extends IContentPart<? extends javafx.scene.Node>> toBeSelected)
* Creates a new
SelectOperation to change the selection within
the given IViewer to prepend the given content parts. |
Modifier and Type | Method and Description |
---|---|
IStatus |
execute(IProgressMonitor monitor,
IAdaptable info) |
protected SelectionModel |
getSelectionModel()
Returns the
SelectionModel adapted to the viewer. |
boolean |
isContentRelevant()
Returns
true if this ITransactionalOperation is
actually changing model data (instead of only affecting the
visualization). |
boolean |
isNoOp()
Returns
true if this ITransactionalOperation has no
effect (in comparison to its initial state). |
IStatus |
redo(IProgressMonitor monitor,
IAdaptable info) |
IStatus |
undo(IProgressMonitor monitor,
IAdaptable info) |
addContext, canExecute, canRedo, canUndo, dispose, getContexts, getLabel, hasContext, removeContext, setLabel, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
addContext, canExecute, canRedo, canUndo, dispose, getContexts, getLabel, hasContext, removeContext
public static final java.lang.String DEFAULT_LABEL
"change-selection"The default label for this operation (i.e. used if no label is specified).
public SelectOperation(IViewer viewer, java.util.List<? extends IContentPart<? extends javafx.scene.Node>> toBeSelected)
SelectOperation
to change the selection within the
given IViewer
to prepend the given content parts. It uses the
DEFAULT_LABEL
.viewer
- The IViewer
for which the selection is changed.toBeSelected
- The IContentPart
s that are to be selected.public SelectOperation(java.lang.String label, IViewer viewer, java.util.List<? extends IContentPart<? extends javafx.scene.Node>> toBeSelected)
SelectOperation
to change the selection within
the given IViewer
to prepend the given content parts. The given
label is used.label
- The operation's label.viewer
- The IViewer
for which the selection is changed.toBeSelected
- The IContentPart
s that are to be selected.public IStatus execute(IProgressMonitor monitor, IAdaptable info) throws ExecutionException
execute
in interface IUndoableOperation
execute
in class AbstractOperation
ExecutionException
protected SelectionModel getSelectionModel()
SelectionModel
adapted to the viewer.SelectionModel
adapter.public boolean isContentRelevant()
ITransactionalOperation
true
if this ITransactionalOperation
is
actually changing model data (instead of only affecting the
visualization). Otherwise returns false
. The content
relevance of an ITransactionalOperation
can be checked to
determine if the execution of the operation will affect the model, for
example, to set an editor's dirty flag.isContentRelevant
in interface ITransactionalOperation
true
if this ITransactionalOperation
is
actually changing model data, otherwise false
.public boolean isNoOp()
ITransactionalOperation
true
if this ITransactionalOperation
has no
effect (in comparison to its initial state). Otherwise returns
false
.isNoOp
in interface ITransactionalOperation
true
if this ITransactionalOperation
has no
effect, otherwise false
.public IStatus redo(IProgressMonitor monitor, IAdaptable info) throws ExecutionException
redo
in interface IUndoableOperation
redo
in class AbstractOperation
ExecutionException
public IStatus undo(IProgressMonitor monitor, IAdaptable info) throws ExecutionException
undo
in interface IUndoableOperation
undo
in class AbstractOperation
ExecutionException
Copyright (c) 2014, 2016 itemis AG and others. All rights reserved.