Class DeselectOperation
java.lang.Object
org.eclipse.core.commands.operations.AbstractOperation
org.eclipse.gef.mvc.fx.operations.DeselectOperation
- All Implemented Interfaces:
IUndoableOperation
,ITransactionalOperation
-
Field Summary
-
Constructor Summary
ConstructorDescriptionDeselectOperation
(String label, IViewer viewer, List<? extends IContentPart<? extends javafx.scene.Node>> toBeDeselected) Creates a newDeselectOperation
to change the selection within the givenIViewer
by removing the givenIContentPart
s.DeselectOperation
(IViewer viewer, List<? extends IContentPart<? extends javafx.scene.Node>> toBeDeselected) Creates a newDeselectOperation
to change the selection within the givenIViewer
by removing the givenIContentPart
s. -
Method Summary
Modifier and TypeMethodDescriptionexecute
(IProgressMonitor monitor, IAdaptable info) protected SelectionModel
Returns theSelectionModel
adapted to the viewer.List<IContentPart<? extends javafx.scene.Node>>
Returns the parts that are to be deleted.boolean
Returnstrue
if thisITransactionalOperation
is actually changing model data (instead of only affecting the visualization).boolean
isNoOp()
Returnstrue
if thisITransactionalOperation
has no effect (in comparison to its initial state).redo
(IProgressMonitor monitor, IAdaptable info) undo
(IProgressMonitor monitor, IAdaptable info) Methods inherited from class org.eclipse.core.commands.operations.AbstractOperation
addContext, canExecute, canRedo, canUndo, dispose, getContexts, getLabel, hasContext, removeContext, setLabel, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.core.commands.operations.IUndoableOperation
addContext, canExecute, canRedo, canUndo, dispose, getContexts, getLabel, hasContext, removeContext
-
Field Details
-
DEFAULT_LABEL
"change-selection"
The default label for this operation (i.e. used if no label is specified).- See Also:
-
-
Constructor Details
-
DeselectOperation
public DeselectOperation(IViewer viewer, List<? extends IContentPart<? extends javafx.scene.Node>> toBeDeselected) Creates a newDeselectOperation
to change the selection within the givenIViewer
by removing the givenIContentPart
s. TheDEFAULT_LABEL
is used.- Parameters:
viewer
- TheIViewer
for which the selection is changed.toBeDeselected
- TheIContentPart
s that are to be selected.
-
DeselectOperation
public DeselectOperation(String label, IViewer viewer, List<? extends IContentPart<? extends javafx.scene.Node>> toBeDeselected) Creates a newDeselectOperation
to change the selection within the givenIViewer
by removing the givenIContentPart
s. The given label is used.- Parameters:
label
- The operation's label.viewer
- TheIViewer
for which the selection is changed.toBeDeselected
- TheIContentPart
s that are to be selected.
-
-
Method Details
-
execute
- Specified by:
execute
in interfaceIUndoableOperation
- Specified by:
execute
in classAbstractOperation
- Throws:
ExecutionException
-
getSelectionModel
Returns theSelectionModel
adapted to the viewer.- Returns:
- The
SelectionModel
adapter.
-
getToBeDeselected
Returns the parts that are to be deleted.- Returns:
- A reference to the to be deleted
IContentPart
s.
-
isContentRelevant
public boolean isContentRelevant()Description copied from interface:ITransactionalOperation
Returnstrue
if thisITransactionalOperation
is actually changing model data (instead of only affecting the visualization). Otherwise returnsfalse
. The content relevance of anITransactionalOperation
can be checked to determine if the execution of the operation will affect the model, for example, to set an editor's dirty flag.- Specified by:
isContentRelevant
in interfaceITransactionalOperation
- Returns:
true
if thisITransactionalOperation
is actually changing model data, otherwisefalse
.
-
isNoOp
public boolean isNoOp()Description copied from interface:ITransactionalOperation
Returnstrue
if thisITransactionalOperation
has no effect (in comparison to its initial state). Otherwise returnsfalse
.- Specified by:
isNoOp
in interfaceITransactionalOperation
- Returns:
true
if thisITransactionalOperation
has no effect, otherwisefalse
.
-
redo
- Specified by:
redo
in interfaceIUndoableOperation
- Specified by:
redo
in classAbstractOperation
- Throws:
ExecutionException
-
undo
- Specified by:
undo
in interfaceIUndoableOperation
- Specified by:
undo
in classAbstractOperation
- Throws:
ExecutionException
-