Class AddContentChildOperation
java.lang.Object
org.eclipse.core.commands.operations.AbstractOperation
org.eclipse.gef.mvc.fx.operations.AddContentChildOperation
- All Implemented Interfaces:
- IUndoableOperation,- ITransactionalOperation
The 
AddContentChildOperation uses the IContentPart API to
 remove a content object from an IContentPart.- 
Constructor SummaryConstructorsConstructorDescriptionAddContentChildOperation(IContentPart<? extends javafx.scene.Node> parent, Object contentChild, int index) Creates a newAddContentChildOperationfor adding the given contentChildObjectto the content children of the given parentIContentPart.
- 
Method SummaryModifier and TypeMethodDescriptionexecute(IProgressMonitor monitor, IAdaptable info) 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) 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
- 
Constructor Details- 
AddContentChildOperationpublic AddContentChildOperation(IContentPart<? extends javafx.scene.Node> parent, Object contentChild, int index) Creates a newAddContentChildOperationfor adding the given contentChildObjectto the content children of the given parentIContentPart.- Parameters:
- parent- The- IContentPartto which a content child is to be added.
- contentChild- The content- Objectwhich is to be added to the content children of the parent.
- index- The index of the contentChild within the parent 's list of content children.
 
 
- 
- 
Method Details- 
execute- Specified by:
- executein interface- IUndoableOperation
- Specified by:
- executein class- AbstractOperation
- Throws:
- ExecutionException
 
- 
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
 
- 
undo- Specified by:
- undoin interface- IUndoableOperation
- Specified by:
- undoin class- AbstractOperation
- Throws:
- ExecutionException
 
 
-