Class ChangeFocusOperation
java.lang.Object
org.eclipse.core.commands.operations.AbstractOperation
org.eclipse.gef.mvc.fx.operations.ChangeFocusOperation
- All Implemented Interfaces:
- IUndoableOperation,- ITransactionalOperation
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionChangeFocusOperation(String label, IViewer viewer, IContentPart<? extends javafx.scene.Node> newFocused) Creates a newChangeFocusOperationto assign focus to the given newFocusedIContentPartwithin the givenIViewer.ChangeFocusOperation(IViewer viewer, IContentPart<? extends javafx.scene.Node> newFocused) Creates a newChangeFocusOperationto assign focus to the given newFocusedIContentPartwithin the givenIViewer.
- 
Method SummaryModifier and TypeMethodDescriptionexecute(IProgressMonitor monitor, IAdaptable info) protected FocusModelReturns theFocusModeladapted to the viewer.booleanReturnstrueif thisITransactionalOperationis actually changing model data (instead of only affecting the visualization).booleanisNoOp()Returnstrueif thisITransactionalOperationhas no effect (in comparison to its initial state).redo(IProgressMonitor monitor, IAdaptable info) voidsetNewFocused(IContentPart<? extends javafx.scene.Node> newFocused) Sets the new focussed part to the given one.undo(IProgressMonitor monitor, IAdaptable info) Methods inherited from class org.eclipse.core.commands.operations.AbstractOperationaddContext, canExecute, canRedo, canUndo, dispose, getContexts, getLabel, hasContext, removeContext, setLabel, toStringMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.core.commands.operations.IUndoableOperationaddContext, canExecute, canRedo, canUndo, dispose, getContexts, getLabel, hasContext, removeContext
- 
Field Details- 
DEFAULT_LABEL"change-focus" The default label for this operation (i.e. used if no label is specified).- See Also:
 
 
- 
- 
Constructor Details- 
ChangeFocusOperationCreates a newChangeFocusOperationto assign focus to the given newFocusedIContentPartwithin the givenIViewer. When the operation is undone, focus is assigned to the given oldFocusedIContentPart.- Parameters:
- viewer- The- IViewerfor which the- FocusModelis to be changed.
- newFocused- The- IContentPartto which focus will be assigned.
 
- 
ChangeFocusOperationpublic ChangeFocusOperation(String label, IViewer viewer, IContentPart<? extends javafx.scene.Node> newFocused) Creates a newChangeFocusOperationto assign focus to the given newFocusedIContentPartwithin the givenIViewer. When the operation is undone, focus is assigned to the given oldFocusedIContentPart. The given label is used as the label for the operation.- Parameters:
- label- The operation's label.
- viewer- The- IViewerfor which the- FocusModelis to be changed.
- newFocused- The- IContentPartto which focus will be assigned.
 
 
- 
- 
Method Details- 
execute- Specified by:
- executein interface- IUndoableOperation
- Specified by:
- executein class- AbstractOperation
- Throws:
- ExecutionException
 
- 
getFocusModelReturns theFocusModeladapted to the viewer.- Returns:
- The FocusModeladapter.
 
- 
isContentRelevantpublic boolean isContentRelevant()Description copied from interface:ITransactionalOperationReturnstrueif thisITransactionalOperationis actually changing model data (instead of only affecting the visualization). Otherwise returnsfalse. The content relevance of anITransactionalOperationcan 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:
- isContentRelevantin interface- ITransactionalOperation
- Returns:
- trueif this- ITransactionalOperationis actually changing model data, otherwise- false.
 
- 
isNoOppublic boolean isNoOp()Description copied from interface:ITransactionalOperationReturnstrueif thisITransactionalOperationhas no effect (in comparison to its initial state). Otherwise returnsfalse.- Specified by:
- isNoOpin interface- ITransactionalOperation
- Returns:
- trueif this- ITransactionalOperationhas no effect, otherwise- false.
 
- 
redo- Specified by:
- redoin interface- IUndoableOperation
- Specified by:
- redoin class- AbstractOperation
- Throws:
- ExecutionException
 
- 
setNewFocusedSets the new focussed part to the given one.- Parameters:
- newFocused- The new focus part.
 
- 
undo- Specified by:
- undoin interface- IUndoableOperation
- Specified by:
- undoin class- AbstractOperation
- Throws:
- ExecutionException
 
 
-