Class DiagramBehaviorDummy
- java.lang.Object
-
- org.eclipse.graphiti.ui.internal.editor.DiagramBehaviorDummy
-
- All Implemented Interfaces:
IDiagramBehavior
public class DiagramBehaviorDummy extends java.lang.Object implements IDiagramBehavior
can be used in the dark feature processing mode
-
-
Constructor Summary
Constructors Constructor Description DiagramBehaviorDummy(IDiagramContainer diagramContainer, org.eclipse.emf.transaction.TransactionalEditingDomain editingDomain)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectexecuteFeature(IFeature feature, IContext context)IDiagramContainergetDiagramContainer()Returns the associated container visualizing the diagram.org.eclipse.emf.transaction.TransactionalEditingDomaingetEditingDomain()Gets the transactional editing domain.voidrefresh()Refreshes the complete visualization.voidrefreshContent()Refreshes the content of the container (what's shown inside the diagram itself).voidrefreshPalette()Refreshes the containers's palette.voidrefreshRenderingDecorators(PictogramElement pe)Refreshes all rendering decorators for the given pictogram element.
-
-
-
Constructor Detail
-
DiagramBehaviorDummy
public DiagramBehaviorDummy(IDiagramContainer diagramContainer, org.eclipse.emf.transaction.TransactionalEditingDomain editingDomain)
-
-
Method Detail
-
getDiagramContainer
public IDiagramContainer getDiagramContainer()
Description copied from interface:IDiagramBehaviorReturns the associated container visualizing the diagram.- Specified by:
getDiagramContainerin interfaceIDiagramBehavior- Returns:
- The associated instance of
IDiagramContainer.
-
refresh
public void refresh()
Description copied from interface:IDiagramBehaviorRefreshes the complete visualization.- Specified by:
refreshin interfaceIDiagramBehavior
-
refreshPalette
public void refreshPalette()
Description copied from interface:IDiagramBehaviorRefreshes the containers's palette.- Specified by:
refreshPalettein interfaceIDiagramBehavior
-
refreshContent
public void refreshContent()
Description copied from interface:IDiagramBehaviorRefreshes the content of the container (what's shown inside the diagram itself).- Specified by:
refreshContentin interfaceIDiagramBehavior
-
refreshRenderingDecorators
public void refreshRenderingDecorators(PictogramElement pe)
Description copied from interface:IDiagramBehaviorRefreshes all rendering decorators for the given pictogram element. That means: 1. delete current decorators 2. ask the tool behaviour provider for decorator data 3. create new decorators with this data and render this new decorators- Specified by:
refreshRenderingDecoratorsin interfaceIDiagramBehavior- Parameters:
pe- The pictogram element to refresh the decorators for
-
executeFeature
public java.lang.Object executeFeature(IFeature feature, IContext context)
Can be called to execute the givenIFeatureusing the givenIContext; also the Graphiti framework uses this method to call additional features from with feature processing. In the latter case this method is called from with an EMF Transaction so that modifications are wrapped inside this Transaction. In case the method is called directly by a user, it needs to be ensured that the call happens with an EMF transaction, otherwise an according EMF Transactions exception will be thrown.- Specified by:
executeFeaturein interfaceIDiagramBehavior- Parameters:
feature- theIFeatureto executecontext- theIContextto use while executing the feature- Returns:
- in case of an
IAddFeaturebeing passed as feature the newly addedPictogramElementwill be returned (in case the add method returning it), in all other casesnull
-
getEditingDomain
public org.eclipse.emf.transaction.TransactionalEditingDomain getEditingDomain()
Description copied from interface:IDiagramBehaviorGets the transactional editing domain.- Specified by:
getEditingDomainin interfaceIDiagramBehavior- Returns:
- The transactional editing domain which is used in the behavior object
-
-