Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradaussy2012-03-27 16:19:06 +0000
committeradaussy2012-03-27 16:19:06 +0000
commit9119493bc998b80327899eb84d58ab63a927c3ce (patch)
treee54713ae8fa84bed72f31a62d1a86f080957c227
parent49da1a01f512809f75589ee7195c48e9a830ed3b (diff)
downloadorg.eclipse.papyrus-9119493bc998b80327899eb84d58ab63a927c3ce.tar.gz
org.eclipse.papyrus-9119493bc998b80327899eb84d58ab63a927c3ce.tar.xz
org.eclipse.papyrus-9119493bc998b80327899eb84d58ab63a927c3ce.zip
NEW - bug 372745: [ActivityDiagram] Major refactoring group framework
https://bugs.eclipse.org/bugs/show_bug.cgi?id=372745
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.activity/custom-src/org/eclipse/papyrus/diagram/activity/edit/policies/ReferencingGroupCustomDragAndDropEditPolicy.java119
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.activity/model/activityDiagram.gmfgen4
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/ActivityPartitionActivityPartitionContentCompartmentEditPart.java4
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/InterruptibleActivityRegionInterruptibleActivityRegionContentCompartmentEditPart.java4
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorContentProvider.java370
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorLabelProvider.java624
6 files changed, 622 insertions, 503 deletions
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.activity/custom-src/org/eclipse/papyrus/diagram/activity/edit/policies/ReferencingGroupCustomDragAndDropEditPolicy.java b/plugins/uml/org.eclipse.papyrus.diagram.activity/custom-src/org/eclipse/papyrus/diagram/activity/edit/policies/ReferencingGroupCustomDragAndDropEditPolicy.java
new file mode 100644
index 00000000000..2d54c3af489
--- /dev/null
+++ b/plugins/uml/org.eclipse.papyrus.diagram.activity/custom-src/org/eclipse/papyrus/diagram/activity/edit/policies/ReferencingGroupCustomDragAndDropEditPolicy.java
@@ -0,0 +1,119 @@
+/*****************************************************************************
+ * Copyright (c) 2011 Atos.
+ *
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Arthur Daussy (Atos) - Initial API and implementation
+ * Arthur Daussy - 371712 : 372745: [ActivityDiagram] Major refactoring group framework
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.diagram.activity.edit.policies;
+
+import java.util.Collection;
+
+import org.eclipse.core.commands.operations.IUndoableOperation;
+import org.eclipse.draw2d.geometry.Point;
+import org.eclipse.emf.ecore.EClass;
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.gef.EditPart;
+import org.eclipse.gef.commands.Command;
+import org.eclipse.gef.commands.CompoundCommand;
+import org.eclipse.gmf.runtime.common.core.command.CompositeCommand;
+import org.eclipse.gmf.runtime.diagram.ui.commands.CommandProxy;
+import org.eclipse.gmf.runtime.diagram.ui.commands.ICommandProxy;
+import org.eclipse.gmf.runtime.diagram.ui.editparts.GraphicalEditPart;
+import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
+import org.eclipse.gmf.runtime.diagram.ui.requests.DropObjectsRequest;
+import org.eclipse.gmf.runtime.notation.Diagram;
+import org.eclipse.papyrus.diagram.activity.activitygroup.ContainerNodeDescriptorRegistry;
+import org.eclipse.papyrus.diagram.activity.activitygroup.IContainerNodeDescriptor;
+import org.eclipse.uml2.uml.Element;
+/**
+ * Drag and drop policy which allow drop of objects which are not contains from a semantic point of view into a visual element such as Activity Partition
+ * @author adaussy
+ *
+ */
+public class ReferencingGroupCustomDragAndDropEditPolicy extends CustomDiagramDragDropEditPolicy {
+
+ /**
+ * Override in order to accept drop of element which are not directly containing by a referencing group
+ *
+ * @see org.eclipse.papyrus.diagram.common.editpolicies.CommonDiagramDragDropEditPolicy#getDropObjectCommand(org.eclipse.gmf.runtime.diagram.ui.requests.DropObjectsRequest,
+ * org.eclipse.emf.ecore.EObject)
+ */
+ @Override
+ protected IUndoableOperation getDropObjectCommand(DropObjectsRequest dropRequest, EObject droppedObject) {
+ Point location = dropRequest.getLocation().getCopy();
+ int nodeVISUALID = getNodeVisualID(((IGraphicalEditPart)getHost()).getNotationView(), droppedObject);
+ int linkVISUALID = getLinkWithClassVisualID(droppedObject);
+ if(getSpecificDrop().contains(nodeVISUALID) || getSpecificDrop().contains(linkVISUALID)) {
+ Command specificDropCommand = getSpecificDropCommand(dropRequest, (Element)droppedObject, nodeVISUALID, linkVISUALID);
+ CompositeCommand cc = new CompositeCommand("Drop command");
+ cc.compose(new CommandProxy(specificDropCommand));
+ // If ctrl key activate, get the content of element dropped
+ if(isCopy(dropRequest)) {
+ // Check for ICommandProxy and CompoundCommand the most command type used
+ if(specificDropCommand instanceof ICommandProxy) {
+ ICommandProxy specificDropCommandProxy = (ICommandProxy)specificDropCommand;
+ createDeferredCommandWithCommandResult(droppedObject, cc, specificDropCommandProxy);
+ } else if(specificDropCommand instanceof CompoundCommand) {
+ CompoundCommand specificDropCompoundCommand = (CompoundCommand)specificDropCommand;
+ ICommandProxy cp = getCommandProxyFromCompoundCommand(specificDropCompoundCommand);
+ if(cp != null) {
+ createDeferredCommandWithCommandResult(droppedObject, cc, cp);
+ }
+ }
+ }
+ return cc;
+ }
+ if(linkVISUALID == -1 && nodeVISUALID != -1) {
+ // The element to drop is a node
+ // Retrieve it's expected graphical parent
+ EObject graphicalParent = ((GraphicalEditPart)getHost()).resolveSemanticElement();
+ // Restrict the default node creation to the following cases:
+ // . Take the containment relationship into consideration
+ // . Release the constraint when GraphicalParent is a diagram
+ IContainerNodeDescriptor descriptor = ContainerNodeDescriptorRegistry.getInstance().getContainerNodeDescriptor(getContainerEClass());
+ if(getHost().getModel() instanceof Diagram) {
+ return getDefaultDropNodeCommand(nodeVISUALID, location, droppedObject, dropRequest);
+ } else if((graphicalParent instanceof Element) && (descriptor.canIBeGraphicalParentOf(droppedObject.eClass()) || descriptor.canIBeModelParentOf(droppedObject.eClass()))) {
+ return getDefaultDropNodeCommand(nodeVISUALID, location, droppedObject, dropRequest);
+ }
+ return org.eclipse.gmf.runtime.common.core.command.UnexecutableCommand.INSTANCE;
+ }
+ if(linkVISUALID != -1) {
+ Collection<?> sources = linkmappingHelper.getSource((Element)droppedObject);
+ Collection<?> targets = linkmappingHelper.getTarget((Element)droppedObject);
+ if(sources.size() == 0 || targets.size() == 0) {
+ return org.eclipse.gmf.runtime.common.core.command.UnexecutableCommand.INSTANCE;
+ }
+ // binary association
+ Element source = (Element)sources.toArray()[0];
+ Element target = (Element)targets.toArray()[0];
+ CompositeCommand cc = new CompositeCommand("Add Link"); //$NON-NLS-1$
+ dropBinaryLink(cc, source, target, linkVISUALID, location, (Element)droppedObject);
+ return cc;
+ }
+ return org.eclipse.gmf.runtime.common.core.command.UnexecutableCommand.INSTANCE;
+ }
+ /**
+ * Retreive the {@link EClass} of the host
+ * @return
+ */
+ protected EClass getContainerEClass(){
+ EditPart editPart = getHost();
+ if (editPart instanceof IGraphicalEditPart){
+ IGraphicalEditPart part = (IGraphicalEditPart)editPart;
+ EObject element = part.resolveSemanticElement();
+ if (element != null){
+ return element.eClass();
+ }
+ }
+ return null;
+ }
+}
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.activity/model/activityDiagram.gmfgen b/plugins/uml/org.eclipse.papyrus.diagram.activity/model/activityDiagram.gmfgen
index 5f45c038a50..ce3e63c9fd8 100644
--- a/plugins/uml/org.eclipse.papyrus.diagram.activity/model/activityDiagram.gmfgen
+++ b/plugins/uml/org.eclipse.papyrus.diagram.activity/model/activityDiagram.gmfgen
@@ -9113,7 +9113,7 @@
<behaviour
xsi:type="gmfgen:CustomBehaviour"
key="EditPolicyRoles.DRAG_DROP_ROLE"
- editPolicyQualifiedClassName="org.eclipse.papyrus.diagram.activity.edit.policies.CustomDiagramDragDropEditPolicy"/>
+ editPolicyQualifiedClassName="org.eclipse.papyrus.diagram.activity.edit.policies.ReferencingGroupCustomDragAndDropEditPolicy"/>
<behaviour
xsi:type="gmfgen:CustomBehaviour"
key="&quot;RemoveOrphanView&quot;"
@@ -9139,7 +9139,7 @@
<behaviour
xsi:type="gmfgen:CustomBehaviour"
key="EditPolicyRoles.DRAG_DROP_ROLE"
- editPolicyQualifiedClassName="org.eclipse.papyrus.diagram.activity.edit.policies.CustomDiagramDragDropEditPolicy"/>
+ editPolicyQualifiedClassName="org.eclipse.papyrus.diagram.activity.edit.policies.ReferencingGroupCustomDragAndDropEditPolicy"/>
<behaviour
xsi:type="gmfgen:CustomBehaviour"
key="&quot;RemoveOrphanView&quot;"
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/ActivityPartitionActivityPartitionContentCompartmentEditPart.java b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/ActivityPartitionActivityPartitionContentCompartmentEditPart.java
index 247af661873..51571551450 100644
--- a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/ActivityPartitionActivityPartitionContentCompartmentEditPart.java
+++ b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/ActivityPartitionActivityPartitionContentCompartmentEditPart.java
@@ -28,7 +28,7 @@ import org.eclipse.gmf.runtime.draw2d.ui.figures.ConstrainedToolbarLayout;
import org.eclipse.gmf.runtime.notation.NotationPackage;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.papyrus.diagram.activity.edit.policies.ActivityPartitionActivityPartitionContentCompartmentItemSemanticEditPolicy;
-import org.eclipse.papyrus.diagram.activity.edit.policies.CustomDiagramDragDropEditPolicy;
+import org.eclipse.papyrus.diagram.activity.edit.policies.ReferencingGroupCustomDragAndDropEditPolicy;
import org.eclipse.papyrus.diagram.activity.edit.policies.RemoveOrphanViewPolicy;
import org.eclipse.papyrus.diagram.activity.part.Messages;
import org.eclipse.papyrus.diagram.common.editpolicies.DuplicatePasteEditPolicy;
@@ -77,7 +77,7 @@ public class ActivityPartitionActivityPartitionContentCompartmentEditPart extend
installEditPolicy(DuplicatePasteEditPolicy.PASTE_ROLE, new DuplicatePasteEditPolicy());
//in Papyrus diagrams are not strongly synchronised
//installEditPolicy(org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles.CANONICAL_ROLE, new org.eclipse.papyrus.diagram.activity.edit.policies.ActivityPartitionActivityPartitionContentCompartmentCanonicalEditPolicy());
- installEditPolicy(EditPolicyRoles.DRAG_DROP_ROLE, new CustomDiagramDragDropEditPolicy());
+ installEditPolicy(EditPolicyRoles.DRAG_DROP_ROLE, new ReferencingGroupCustomDragAndDropEditPolicy());
installEditPolicy("RemoveOrphanView", new RemoveOrphanViewPolicy()); //$NON-NLS-1$
}
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/InterruptibleActivityRegionInterruptibleActivityRegionContentCompartmentEditPart.java b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/InterruptibleActivityRegionInterruptibleActivityRegionContentCompartmentEditPart.java
index b63a7de12f1..80d0dfac17f 100644
--- a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/InterruptibleActivityRegionInterruptibleActivityRegionContentCompartmentEditPart.java
+++ b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/edit/parts/InterruptibleActivityRegionInterruptibleActivityRegionContentCompartmentEditPart.java
@@ -27,8 +27,8 @@ import org.eclipse.gmf.runtime.diagram.ui.figures.ResizableCompartmentFigure;
import org.eclipse.gmf.runtime.draw2d.ui.figures.ConstrainedToolbarLayout;
import org.eclipse.gmf.runtime.notation.NotationPackage;
import org.eclipse.gmf.runtime.notation.View;
-import org.eclipse.papyrus.diagram.activity.edit.policies.CustomDiagramDragDropEditPolicy;
import org.eclipse.papyrus.diagram.activity.edit.policies.InterruptibleActivityRegionInterruptibleActivityRegionContentCompartmentItemSemanticEditPolicy;
+import org.eclipse.papyrus.diagram.activity.edit.policies.ReferencingGroupCustomDragAndDropEditPolicy;
import org.eclipse.papyrus.diagram.activity.edit.policies.RemoveOrphanViewPolicy;
import org.eclipse.papyrus.diagram.activity.part.Messages;
import org.eclipse.papyrus.diagram.common.editpolicies.DuplicatePasteEditPolicy;
@@ -77,7 +77,7 @@ public class InterruptibleActivityRegionInterruptibleActivityRegionContentCompar
installEditPolicy(DuplicatePasteEditPolicy.PASTE_ROLE, new DuplicatePasteEditPolicy());
//in Papyrus diagrams are not strongly synchronised
//installEditPolicy(org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles.CANONICAL_ROLE, new org.eclipse.papyrus.diagram.activity.edit.policies.InterruptibleActivityRegionInterruptibleActivityRegionContentCompartmentCanonicalEditPolicy());
- installEditPolicy(EditPolicyRoles.DRAG_DROP_ROLE, new CustomDiagramDragDropEditPolicy());
+ installEditPolicy(EditPolicyRoles.DRAG_DROP_ROLE, new ReferencingGroupCustomDragAndDropEditPolicy());
installEditPolicy("RemoveOrphanView", new RemoveOrphanViewPolicy()); //$NON-NLS-1$
}
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorContentProvider.java b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorContentProvider.java
index 59332994ab5..7a602e2a027 100644
--- a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorContentProvider.java
+++ b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorContentProvider.java
@@ -4403,470 +4403,470 @@ public class UMLNavigatorContentProvider implements ICommonContentProvider {
*/
private Object[] getViewChildren(View view, Object parentElement) {
switch(UMLVisualIDRegistry.getVisualID(view)) {
- case InputPinInDestroyObjectActionEditPart.VISUAL_ID:
- {
- //modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInDestroyObjectActionEditPart(view, parentElement);
- }
- case ReadStructuralFeatureActionEditPart.VISUAL_ID:
+ case InputPinInSendObjActAsReqEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForReadStructuralFeatureActionEditPart(view, parentElement);
+ return getViewChildrenForInputPinInSendObjActAsReqEditPart(view, parentElement);
}
case ReadSelfActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
return getViewChildrenForReadSelfActionEditPart(view, parentElement);
}
- case InputPinInBroadcastSignalActionEditPart.VISUAL_ID:
+ case OutputPinInValSpecActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInBroadcastSignalActionEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInValSpecActEditPart(view, parentElement);
}
- case CommentEditPartCN.VISUAL_ID:
+ case ActivityDiagramEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForCommentEditPartCN(view, parentElement);
+ return getViewChildrenForActivityDiagramEditPart(view, parentElement);
}
- case ConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ case CallOperationActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForConstraintAsLocalPrecondEditPart(view, parentElement);
+ return getViewChildrenForCallOperationActionEditPart(view, parentElement);
}
- case ActionInputPinInCallOpActEditPart.VISUAL_ID:
+ case ExpansionNodeAsInEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInCallOpActEditPart(view, parentElement);
+ return getViewChildrenForExpansionNodeAsInEditPart(view, parentElement);
}
- case TimeConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ case SendSignalActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForTimeConstraintAsLocalPostcondEditPart(view, parentElement);
+ return getViewChildrenForSendSignalActionEditPart(view, parentElement);
}
- case FlowFinalNodeEditPart.VISUAL_ID:
+ case JoinNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForFlowFinalNodeEditPart(view, parentElement);
+ return getViewChildrenForJoinNodeEditPart(view, parentElement);
}
- case InputPinInReadStructuralFeatureAsObjectEditPart.VISUAL_ID:
+ case CommentLinkEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInReadStructuralFeatureAsObjectEditPart(view, parentElement);
+ return getViewChildrenForCommentLinkEditPart(view, parentElement);
}
- case ActionInputPinInSendObjActAsReqEditPart.VISUAL_ID:
+ case ValuePinInCallOpActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInSendObjActAsReqEditPart(view, parentElement);
+ return getViewChildrenForValuePinInCallOpActAsTargetEditPart(view, parentElement);
}
- case ValuePinInSendObjActAsReqEditPart.VISUAL_ID:
+ case ValuePinInOpaqueActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInSendObjActAsReqEditPart(view, parentElement);
+ return getViewChildrenForValuePinInOpaqueActEditPart(view, parentElement);
}
- case ActivityFinalNodeEditPart.VISUAL_ID:
+ case ExpansionRegionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActivityFinalNodeEditPart(view, parentElement);
+ return getViewChildrenForExpansionRegionEditPart(view, parentElement);
}
- case InputPinInSendSigActEditPart.VISUAL_ID:
+ case MergeNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInSendSigActEditPart(view, parentElement);
+ return getViewChildrenForMergeNodeEditPart(view, parentElement);
}
- case InputPinInSendSigActAsTargetEditPart.VISUAL_ID:
+ case InputPinInReadStructuralFeatureAsObjectEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInSendSigActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForInputPinInReadStructuralFeatureAsObjectEditPart(view, parentElement);
}
- case CommentLinkEditPart.VISUAL_ID:
+ case InputPinInDestroyObjectActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForCommentLinkEditPart(view, parentElement);
+ return getViewChildrenForInputPinInDestroyObjectActionEditPart(view, parentElement);
}
- case ValuePinInCallBeActEditPart.VISUAL_ID:
+ case OutputPinInAddStructuralFeatureValueActionAsResultEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInCallBeActEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInAddStructuralFeatureValueActionAsResultEditPart(view, parentElement);
}
- case SendSignalActionEditPart.VISUAL_ID:
+ case InputPinInSendObjActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForSendSignalActionEditPart(view, parentElement);
+ return getViewChildrenForInputPinInSendObjActAsTargetEditPart(view, parentElement);
}
- case ActionInputPinInCallOpActAsTargetEditPart.VISUAL_ID:
+ case InterruptibleActivityRegionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInCallOpActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForInterruptibleActivityRegionEditPart(view, parentElement);
}
- case DurationConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ case ConstraintAsLocalPostcondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForDurationConstraintAsLocalPrecondEditPart(view, parentElement);
+ return getViewChildrenForConstraintAsLocalPostcondEditPart(view, parentElement);
}
- case CallBehaviorActionEditPart.VISUAL_ID:
+ case InputPinInOpaqueActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForCallBehaviorActionEditPart(view, parentElement);
+ return getViewChildrenForInputPinInOpaqueActEditPart(view, parentElement);
}
- case ValueSpecificationActionEditPart.VISUAL_ID:
+ case SendObjectActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValueSpecificationActionEditPart(view, parentElement);
+ return getViewChildrenForSendObjectActionEditPart(view, parentElement);
}
- case ExpansionNodeAsInEditPart.VISUAL_ID:
+ case DurationConstraintAsLocalPostcondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForExpansionNodeAsInEditPart(view, parentElement);
+ return getViewChildrenForDurationConstraintAsLocalPostcondEditPart(view, parentElement);
}
- case ActionInputPinInOpaqueActEditPart.VISUAL_ID:
+ case OpaqueActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInOpaqueActEditPart(view, parentElement);
+ return getViewChildrenForOpaqueActionEditPart(view, parentElement);
}
- case ConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ case ObjectFlowEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForConstraintAsLocalPostcondEditPart(view, parentElement);
+ return getViewChildrenForObjectFlowEditPart(view, parentElement);
}
- case OutputPinInCallOpActEditPart.VISUAL_ID:
+ case FlowFinalNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInCallOpActEditPart(view, parentElement);
+ return getViewChildrenForFlowFinalNodeEditPart(view, parentElement);
}
- case ActivityPartitionEditPart.VISUAL_ID:
+ case SequenceNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActivityPartitionEditPart(view, parentElement);
+ return getViewChildrenForSequenceNodeEditPart(view, parentElement);
}
- case DecisionNodeEditPart.VISUAL_ID:
+ case ActionInputPinInSendObjActAsReqEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForDecisionNodeEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInSendObjActAsReqEditPart(view, parentElement);
}
- case ValuePinInCallOpActAsTargetEditPart.VISUAL_ID:
+ case DurationConstraintAsLocalPrecondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInCallOpActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForDurationConstraintAsLocalPrecondEditPart(view, parentElement);
}
- case ValuePinInOpaqueActEditPart.VISUAL_ID:
+ case ConstraintAsLocalPrecondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInOpaqueActEditPart(view, parentElement);
+ return getViewChildrenForConstraintAsLocalPrecondEditPart(view, parentElement);
}
- case CreateObjectActionEditPart.VISUAL_ID:
+ case ActionInputPinInSendObjActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForCreateObjectActionEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInSendObjActAsTargetEditPart(view, parentElement);
}
- case InputPinInSendObjActAsTargetEditPart.VISUAL_ID:
+ case InitialNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInSendObjActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForInitialNodeEditPart(view, parentElement);
}
- case ExpansionNodeAsOutEditPart.VISUAL_ID:
+ case CallBehaviorActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForExpansionNodeAsOutEditPart(view, parentElement);
+ return getViewChildrenForCallBehaviorActionEditPart(view, parentElement);
}
- case InitialNodeEditPart.VISUAL_ID:
+ case ActivityEditPartCN.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInitialNodeEditPart(view, parentElement);
+ return getViewChildrenForActivityEditPartCN(view, parentElement);
}
- case SequenceNodeEditPart.VISUAL_ID:
+ case ValuePinInSendSigActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForSequenceNodeEditPart(view, parentElement);
+ return getViewChildrenForValuePinInSendSigActEditPart(view, parentElement);
}
- case ActionInputPinInCallBeActEditPart.VISUAL_ID:
+ case ActivityFinalNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInCallBeActEditPart(view, parentElement);
+ return getViewChildrenForActivityFinalNodeEditPart(view, parentElement);
}
- case InputPinInSendObjActAsReqEditPart.VISUAL_ID:
+ case ReadVariableActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInSendObjActAsReqEditPart(view, parentElement);
+ return getViewChildrenForReadVariableActionEditPart(view, parentElement);
}
- case InputPinInOpaqueActEditPart.VISUAL_ID:
+ case ActionInputPinInCallOpActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInOpaqueActEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInCallOpActAsTargetEditPart(view, parentElement);
}
case ActionLocalPostconditionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
return getViewChildrenForActionLocalPostconditionEditPart(view, parentElement);
}
- case InputPinInCallOpActAsTargetEditPart.VISUAL_ID:
+ case OutputPinInCallBeActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInCallOpActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInCallBeActEditPart(view, parentElement);
}
- case IntervalConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ case DataStoreNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForIntervalConstraintAsLocalPostcondEditPart(view, parentElement);
+ return getViewChildrenForDataStoreNodeEditPart(view, parentElement);
}
- case MergeNodeEditPart.VISUAL_ID:
+ case OutputPinInAcceptEventActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForMergeNodeEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInAcceptEventActionEditPart(view, parentElement);
}
- case OutputPinInAddStructuralFeatureValueActionAsResultEditPart.VISUAL_ID:
+ case TimeConstraintAsLocalPostcondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInAddStructuralFeatureValueActionAsResultEditPart(view, parentElement);
+ return getViewChildrenForTimeConstraintAsLocalPostcondEditPart(view, parentElement);
}
- case ActionLocalPreconditionEditPart.VISUAL_ID:
+ case ValueSpecificationActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionLocalPreconditionEditPart(view, parentElement);
+ return getViewChildrenForValueSpecificationActionEditPart(view, parentElement);
}
- case ActionInputPinInSendSigActEditPart.VISUAL_ID:
+ case AcceptEventActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInSendSigActEditPart(view, parentElement);
+ return getViewChildrenForAcceptEventActionEditPart(view, parentElement);
}
- case ActivityDiagramEditPart.VISUAL_ID:
+ case BroadcastSignalActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActivityDiagramEditPart(view, parentElement);
+ return getViewChildrenForBroadcastSignalActionEditPart(view, parentElement);
}
- case AddVariableValueActionEditPart.VISUAL_ID:
+ case ExceptionHandlerEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForAddVariableValueActionEditPart(view, parentElement);
+ return getViewChildrenForExceptionHandlerEditPart(view, parentElement);
}
- case OutputPinInAcceptEventActionEditPart.VISUAL_ID:
+ case ReadStructuralFeatureActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInAcceptEventActionEditPart(view, parentElement);
+ return getViewChildrenForReadStructuralFeatureActionEditPart(view, parentElement);
}
- case OutputPinInReadVariableActionAsResultEditPart.VISUAL_ID:
+ case OutputPinInCreateObjectActionAsResultEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInReadVariableActionAsResultEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInCreateObjectActionAsResultEditPart(view, parentElement);
}
- case AcceptEventActionEditPart.VISUAL_ID:
+ case StructuredActivityNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForAcceptEventActionEditPart(view, parentElement);
+ return getViewChildrenForStructuredActivityNodeEditPart(view, parentElement);
}
- case ReadVariableActionEditPart.VISUAL_ID:
+ case IntervalConstraintAsLocalPostcondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForReadVariableActionEditPart(view, parentElement);
+ return getViewChildrenForIntervalConstraintAsLocalPostcondEditPart(view, parentElement);
}
- case ActivityEditPartCN.VISUAL_ID:
+ case InputPinInAddVariableValueActionAsInsertAtEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActivityEditPartCN(view, parentElement);
+ return getViewChildrenForInputPinInAddVariableValueActionAsInsertAtEditPart(view, parentElement);
}
- case ObjectFlowEditPart.VISUAL_ID:
+ case OutputPinInOpaqueActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForObjectFlowEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInOpaqueActEditPart(view, parentElement);
}
- case InputPinInAddVariableValueActionAsValueEditPart.VISUAL_ID:
+ case LoopNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInAddVariableValueActionAsValueEditPart(view, parentElement);
+ return getViewChildrenForLoopNodeEditPart(view, parentElement);
}
- case BroadcastSignalActionEditPart.VISUAL_ID:
+ case ActionInputPinInCallOpActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForBroadcastSignalActionEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInCallOpActEditPart(view, parentElement);
}
- case InputPinInAddStructuralFeatureValueActionAsObjectEditPart.VISUAL_ID:
+ case ReadSelfActionOutputPinEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInAddStructuralFeatureValueActionAsObjectEditPart(view, parentElement);
+ return getViewChildrenForReadSelfActionOutputPinEditPart(view, parentElement);
}
- case OutputPinInReadStructuralFeatureAsResultEditPart.VISUAL_ID:
+ case CreateObjectActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInReadStructuralFeatureAsResultEditPart(view, parentElement);
+ return getViewChildrenForCreateObjectActionEditPart(view, parentElement);
}
- case ValuePinInSendSigActAsTargetEditPart.VISUAL_ID:
+ case DestroyObjectActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInSendSigActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForDestroyObjectActionEditPart(view, parentElement);
}
- case ForkNodeEditPart.VISUAL_ID:
+ case AddStructuralFeatureValueActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForForkNodeEditPart(view, parentElement);
+ return getViewChildrenForAddStructuralFeatureValueActionEditPart(view, parentElement);
}
- case ExceptionHandlerEditPart.VISUAL_ID:
+ case InputPinInCallOpActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForExceptionHandlerEditPart(view, parentElement);
+ return getViewChildrenForInputPinInCallOpActAsTargetEditPart(view, parentElement);
}
- case DestroyObjectActionEditPart.VISUAL_ID:
+ case CentralBufferNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForDestroyObjectActionEditPart(view, parentElement);
+ return getViewChildrenForCentralBufferNodeEditPart(view, parentElement);
}
- case ValuePinInSendObjActAsTargetEditPart.VISUAL_ID:
+ case TimeConstraintAsLocalPrecondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInSendObjActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForTimeConstraintAsLocalPrecondEditPart(view, parentElement);
}
- case ValuePinInSendSigActEditPart.VISUAL_ID:
+ case InputPinInCallOpActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInSendSigActEditPart(view, parentElement);
+ return getViewChildrenForInputPinInCallOpActEditPart(view, parentElement);
}
- case StructuredActivityNodeEditPart.VISUAL_ID:
+ case ValuePinInCallOpActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForStructuredActivityNodeEditPart(view, parentElement);
+ return getViewChildrenForValuePinInCallOpActEditPart(view, parentElement);
}
- case ConditionalNodeEditPart.VISUAL_ID:
+ case CommentEditPartCN.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForConditionalNodeEditPart(view, parentElement);
+ return getViewChildrenForCommentEditPartCN(view, parentElement);
}
- case ReadSelfActionOutputPinEditPart.VISUAL_ID:
+ case ActivityEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForReadSelfActionOutputPinEditPart(view, parentElement);
+ return getViewChildrenForActivityEditPart(view, parentElement);
}
- case OutputPinInValSpecActEditPart.VISUAL_ID:
+ case ExpansionNodeAsOutEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInValSpecActEditPart(view, parentElement);
+ return getViewChildrenForExpansionNodeAsOutEditPart(view, parentElement);
}
- case CentralBufferNodeEditPart.VISUAL_ID:
+ case OutputPinInCallOpActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForCentralBufferNodeEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInCallOpActEditPart(view, parentElement);
}
- case InputPinInCallBeActEditPart.VISUAL_ID:
+ case ControlFlowEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInCallBeActEditPart(view, parentElement);
+ return getViewChildrenForControlFlowEditPart(view, parentElement);
}
- case InputPinInAddStructuralFeatureValueActionAsValueEditPart.VISUAL_ID:
+ case ActionInputPinInSendSigActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInAddStructuralFeatureValueActionAsValueEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInSendSigActEditPart(view, parentElement);
}
- case OutputPinInCallBeActEditPart.VISUAL_ID:
+ case InputPinInSendSigActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInCallBeActEditPart(view, parentElement);
+ return getViewChildrenForInputPinInSendSigActEditPart(view, parentElement);
}
- case InputPinInCallOpActEditPart.VISUAL_ID:
+ case ActionInputPinInOpaqueActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInCallOpActEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInOpaqueActEditPart(view, parentElement);
}
- case ActionInputPinInSendSigActAsTargetEditPart.VISUAL_ID:
+ case InputPinInCallBeActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInSendSigActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForInputPinInCallBeActEditPart(view, parentElement);
}
- case JoinNodeEditPart.VISUAL_ID:
+ case ActivityParameterNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForJoinNodeEditPart(view, parentElement);
+ return getViewChildrenForActivityParameterNodeEditPart(view, parentElement);
}
- case SendObjectActionEditPart.VISUAL_ID:
+ case IntervalConstraintAsLocalPrecondEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForSendObjectActionEditPart(view, parentElement);
+ return getViewChildrenForIntervalConstraintAsLocalPrecondEditPart(view, parentElement);
}
- case ValuePinInCallOpActEditPart.VISUAL_ID:
+ case InputPinInBroadcastSignalActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForValuePinInCallOpActEditPart(view, parentElement);
+ return getViewChildrenForInputPinInBroadcastSignalActionEditPart(view, parentElement);
}
- case ActivityEditPart.VISUAL_ID:
+ case ValuePinInCallBeActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActivityEditPart(view, parentElement);
+ return getViewChildrenForValuePinInCallBeActEditPart(view, parentElement);
}
- case LoopNodeEditPart.VISUAL_ID:
+ case DecisionNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForLoopNodeEditPart(view, parentElement);
+ return getViewChildrenForDecisionNodeEditPart(view, parentElement);
}
- case ActivityParameterNodeEditPart.VISUAL_ID:
+ case ValuePinInSendObjActAsReqEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActivityParameterNodeEditPart(view, parentElement);
+ return getViewChildrenForValuePinInSendObjActAsReqEditPart(view, parentElement);
}
- case ControlFlowEditPart.VISUAL_ID:
+ case InputPinInAddStructuralFeatureValueActionAsObjectEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForControlFlowEditPart(view, parentElement);
+ return getViewChildrenForInputPinInAddStructuralFeatureValueActionAsObjectEditPart(view, parentElement);
}
- case OpaqueActionEditPart.VISUAL_ID:
+ case ActionInputPinInSendSigActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOpaqueActionEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInSendSigActAsTargetEditPart(view, parentElement);
}
- case InputPinInAddVariableValueActionAsInsertAtEditPart.VISUAL_ID:
+ case ActivityPartitionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInputPinInAddVariableValueActionAsInsertAtEditPart(view, parentElement);
+ return getViewChildrenForActivityPartitionEditPart(view, parentElement);
}
- case CallOperationActionEditPart.VISUAL_ID:
+ case ValuePinInSendSigActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForCallOperationActionEditPart(view, parentElement);
+ return getViewChildrenForValuePinInSendSigActAsTargetEditPart(view, parentElement);
}
- case DurationConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ case ForkNodeEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForDurationConstraintAsLocalPostcondEditPart(view, parentElement);
+ return getViewChildrenForForkNodeEditPart(view, parentElement);
}
- case InterruptibleActivityRegionEditPart.VISUAL_ID:
+ case OutputPinInReadVariableActionAsResultEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForInterruptibleActivityRegionEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInReadVariableActionAsResultEditPart(view, parentElement);
}
- case ActionInputPinInSendObjActAsTargetEditPart.VISUAL_ID:
+ case InputPinInAddStructuralFeatureValueActionAsValueEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForActionInputPinInSendObjActAsTargetEditPart(view, parentElement);
+ return getViewChildrenForInputPinInAddStructuralFeatureValueActionAsValueEditPart(view, parentElement);
}
- case DataStoreNodeEditPart.VISUAL_ID:
+ case OutputPinInReadStructuralFeatureAsResultEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForDataStoreNodeEditPart(view, parentElement);
+ return getViewChildrenForOutputPinInReadStructuralFeatureAsResultEditPart(view, parentElement);
}
- case IntervalConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ case InputPinInAddVariableValueActionAsValueEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForIntervalConstraintAsLocalPrecondEditPart(view, parentElement);
+ return getViewChildrenForInputPinInAddVariableValueActionAsValueEditPart(view, parentElement);
}
- case ExpansionRegionEditPart.VISUAL_ID:
+ case ValuePinInSendObjActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForExpansionRegionEditPart(view, parentElement);
+ return getViewChildrenForValuePinInSendObjActAsTargetEditPart(view, parentElement);
}
- case OutputPinInOpaqueActEditPart.VISUAL_ID:
+ case InputPinInSendSigActAsTargetEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInOpaqueActEditPart(view, parentElement);
+ return getViewChildrenForInputPinInSendSigActAsTargetEditPart(view, parentElement);
}
- case TimeConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ case ActionLocalPreconditionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForTimeConstraintAsLocalPrecondEditPart(view, parentElement);
+ return getViewChildrenForActionLocalPreconditionEditPart(view, parentElement);
}
- case AddStructuralFeatureValueActionEditPart.VISUAL_ID:
+ case ActionInputPinInCallBeActEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForAddStructuralFeatureValueActionEditPart(view, parentElement);
+ return getViewChildrenForActionInputPinInCallBeActEditPart(view, parentElement);
}
- case OutputPinInCreateObjectActionAsResultEditPart.VISUAL_ID:
+ case AddVariableValueActionEditPart.VISUAL_ID:
{
//modification of the template to avoid mistake of 65kb.
- return getViewChildrenForOutputPinInCreateObjectActionAsResultEditPart(view, parentElement);
+ return getViewChildrenForAddVariableValueActionEditPart(view, parentElement);
+ }
+ case ConditionalNodeEditPart.VISUAL_ID:
+ {
+ //modification of the template to avoid mistake of 65kb.
+ return getViewChildrenForConditionalNodeEditPart(view, parentElement);
}
}
return EMPTY_ARRAY;
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorLabelProvider.java b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorLabelProvider.java
index a073c727e74..bc2715a0e1c 100644
--- a/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorLabelProvider.java
+++ b/plugins/uml/org.eclipse.papyrus.diagram.activity/src/org/eclipse/papyrus/diagram/activity/navigator/UMLNavigatorLabelProvider.java
@@ -84,200 +84,200 @@ public class UMLNavigatorLabelProvider extends LabelProvider implements ICommonL
*/
public Image getImage(View view) {
switch(UMLVisualIDRegistry.getVisualID(view)) {
- case InputPinInDestroyObjectActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3096); //$NON-NLS-1$
- case ReadStructuralFeatureActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ReadStructuralFeatureAction", UMLElementTypes.ReadStructuralFeatureAction_3088); //$NON-NLS-1$
+ case InputPinInSendObjActAsReqEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3048); //$NON-NLS-1$
case ReadSelfActionEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ReadSelfAction", UMLElementTypes.ReadSelfAction_3081); //$NON-NLS-1$
- case InputPinInBroadcastSignalActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3103); //$NON-NLS-1$
- case CommentEditPartCN.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Comment", UMLElementTypes.Comment_3080); //$NON-NLS-1$
- case ConstraintAsLocalPrecondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3011); //$NON-NLS-1$
- case ActionInputPinInCallOpActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3021); //$NON-NLS-1$
- case TimeConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?TimeConstraint", UMLElementTypes.TimeConstraint_3037); //$NON-NLS-1$
- case FlowFinalNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?FlowFinalNode", UMLElementTypes.FlowFinalNode_3006); //$NON-NLS-1$
- case InputPinInReadStructuralFeatureAsObjectEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3089); //$NON-NLS-1$
- case ActionInputPinInSendObjActAsReqEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3047); //$NON-NLS-1$
- case ValuePinInSendObjActAsReqEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3046); //$NON-NLS-1$
- case ActivityFinalNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActivityFinalNode", UMLElementTypes.ActivityFinalNode_3005); //$NON-NLS-1$
- case InputPinInSendSigActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3055); //$NON-NLS-1$
- case InputPinInSendSigActAsTargetEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3062); //$NON-NLS-1$
- case CommentLinkEditPart.VISUAL_ID:
- return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?Comment?annotatedElement", UMLElementTypes.CommentAnnotatedElement_4006); //$NON-NLS-1$
- case ValuePinInCallBeActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3017); //$NON-NLS-1$
- case SendSignalActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?SendSignalAction", UMLElementTypes.SendSignalAction_3052); //$NON-NLS-1$
- case ActionInputPinInCallOpActAsTargetEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3026); //$NON-NLS-1$
- case DurationConstraintAsLocalPrecondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DurationConstraint", UMLElementTypes.DurationConstraint_3034); //$NON-NLS-1$
- case CallBehaviorActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?CallBehaviorAction", UMLElementTypes.CallBehaviorAction_3008); //$NON-NLS-1$
- case ValueSpecificationActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValueSpecificationAction", UMLElementTypes.ValueSpecificationAction_3076); //$NON-NLS-1$
+ case OutputPinInValSpecActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3077); //$NON-NLS-1$
+ case ActivityDiagramEditPart.VISUAL_ID:
+ return getImage("Navigator?Diagram?http://www.eclipse.org/uml2/3.0.0/UML?Package", UMLElementTypes.Package_1000); //$NON-NLS-1$
+ case CallOperationActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?CallOperationAction", UMLElementTypes.CallOperationAction_3010); //$NON-NLS-1$
case ExpansionNodeAsInEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ExpansionNode", UMLElementTypes.ExpansionNode_3074); //$NON-NLS-1$
- case ParameterEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Parameter", UMLElementTypes.Parameter_3001); //$NON-NLS-1$
- case ActionInputPinInOpaqueActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3016); //$NON-NLS-1$
- case ConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3012); //$NON-NLS-1$
- case OutputPinInCallOpActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3024); //$NON-NLS-1$
- case ActivityPartitionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActivityPartition", UMLElementTypes.ActivityPartition_3067); //$NON-NLS-1$
- case DecisionNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DecisionNode", UMLElementTypes.DecisionNode_3038); //$NON-NLS-1$
+ case SendSignalActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?SendSignalAction", UMLElementTypes.SendSignalAction_3052); //$NON-NLS-1$
+ case JoinNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?JoinNode", UMLElementTypes.JoinNode_3041); //$NON-NLS-1$
+ case CommentLinkEditPart.VISUAL_ID:
+ return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?Comment?annotatedElement", UMLElementTypes.CommentAnnotatedElement_4006); //$NON-NLS-1$
case ValuePinInCallOpActAsTargetEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3025); //$NON-NLS-1$
case ValuePinInOpaqueActEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3015); //$NON-NLS-1$
- case CreateObjectActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?CreateObjectAction", UMLElementTypes.CreateObjectAction_3086); //$NON-NLS-1$
+ case ExpansionRegionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ExpansionRegion", UMLElementTypes.ExpansionRegion_3070); //$NON-NLS-1$
+ case MergeNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?MergeNode", UMLElementTypes.MergeNode_3039); //$NON-NLS-1$
+ case InputPinInReadStructuralFeatureAsObjectEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3089); //$NON-NLS-1$
+ case InputPinInDestroyObjectActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3096); //$NON-NLS-1$
+ case OutputPinInAddStructuralFeatureValueActionAsResultEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3094); //$NON-NLS-1$
case InputPinInSendObjActAsTargetEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3051); //$NON-NLS-1$
- case ExpansionNodeAsOutEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ExpansionNode", UMLElementTypes.ExpansionNode_3075); //$NON-NLS-1$
- case InitialNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InitialNode", UMLElementTypes.InitialNode_3004); //$NON-NLS-1$
- case SequenceNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?SequenceNode", UMLElementTypes.SequenceNode_3073); //$NON-NLS-1$
- case ActionInputPinInCallBeActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3018); //$NON-NLS-1$
- case InputPinInSendObjActAsReqEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3048); //$NON-NLS-1$
+ case InterruptibleActivityRegionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InterruptibleActivityRegion", UMLElementTypes.InterruptibleActivityRegion_3068); //$NON-NLS-1$
+ case ConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3012); //$NON-NLS-1$
case InputPinInOpaqueActEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3013); //$NON-NLS-1$
+ case SendObjectActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?SendObjectAction", UMLElementTypes.SendObjectAction_3042); //$NON-NLS-1$
+ case DurationConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DurationConstraint", UMLElementTypes.DurationConstraint_3035); //$NON-NLS-1$
+ case OpaqueActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OpaqueAction", UMLElementTypes.OpaqueAction_3007); //$NON-NLS-1$
+ case ObjectFlowEditPart.VISUAL_ID:
+ return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?ObjectFlow", UMLElementTypes.ObjectFlow_4003); //$NON-NLS-1$
+ case FlowFinalNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?FlowFinalNode", UMLElementTypes.FlowFinalNode_3006); //$NON-NLS-1$
+ case SequenceNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?SequenceNode", UMLElementTypes.SequenceNode_3073); //$NON-NLS-1$
+ case ActionInputPinInSendObjActAsReqEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3047); //$NON-NLS-1$
+ case DurationConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DurationConstraint", UMLElementTypes.DurationConstraint_3034); //$NON-NLS-1$
+ case ConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3011); //$NON-NLS-1$
+ case ActionInputPinInSendObjActAsTargetEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3050); //$NON-NLS-1$
+ case InitialNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InitialNode", UMLElementTypes.InitialNode_3004); //$NON-NLS-1$
+ case CallBehaviorActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?CallBehaviorAction", UMLElementTypes.CallBehaviorAction_3008); //$NON-NLS-1$
+ case ParameterEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Parameter", UMLElementTypes.Parameter_3001); //$NON-NLS-1$
+ case ActivityEditPartCN.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Activity", UMLElementTypes.Activity_3083); //$NON-NLS-1$
+ case ValuePinInSendSigActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3054); //$NON-NLS-1$
+ case ConstraintInActivityAsPostcondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3003); //$NON-NLS-1$
+ case ActivityFinalNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActivityFinalNode", UMLElementTypes.ActivityFinalNode_3005); //$NON-NLS-1$
+ case ReadVariableActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ReadVariableAction", UMLElementTypes.ReadVariableAction_3097); //$NON-NLS-1$
+ case ActionInputPinInCallOpActAsTargetEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3026); //$NON-NLS-1$
case ActionLocalPostconditionEditPart.VISUAL_ID:
return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?Action?localPostcondition", UMLElementTypes.ActionLocalPostcondition_4002); //$NON-NLS-1$
- case InputPinInCallOpActAsTargetEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3027); //$NON-NLS-1$
- case IntervalConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?IntervalConstraint", UMLElementTypes.IntervalConstraint_3033); //$NON-NLS-1$
- case MergeNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?MergeNode", UMLElementTypes.MergeNode_3039); //$NON-NLS-1$
- case OutputPinInAddStructuralFeatureValueActionAsResultEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3094); //$NON-NLS-1$
- case ActionLocalPreconditionEditPart.VISUAL_ID:
- return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?Action?localPrecondition", UMLElementTypes.ActionLocalPrecondition_4001); //$NON-NLS-1$
- case ActionInputPinInSendSigActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3053); //$NON-NLS-1$
- case ActivityDiagramEditPart.VISUAL_ID:
- return getImage("Navigator?Diagram?http://www.eclipse.org/uml2/3.0.0/UML?Package", UMLElementTypes.Package_1000); //$NON-NLS-1$
- case AddVariableValueActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?AddVariableValueAction", UMLElementTypes.AddVariableValueAction_3099); //$NON-NLS-1$
+ case OutputPinInCallBeActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3020); //$NON-NLS-1$
+ case ConstraintInActivityAsPrecondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3002); //$NON-NLS-1$
+ case DataStoreNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DataStoreNode", UMLElementTypes.DataStoreNode_3078); //$NON-NLS-1$
case OutputPinInAcceptEventActionEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3064); //$NON-NLS-1$
- case ShapeNamedElementEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?NamedElement", UMLElementTypes.NamedElement_3085); //$NON-NLS-1$
- case OutputPinInReadVariableActionAsResultEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3098); //$NON-NLS-1$
+ case TimeConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?TimeConstraint", UMLElementTypes.TimeConstraint_3037); //$NON-NLS-1$
+ case ValueSpecificationActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValueSpecificationAction", UMLElementTypes.ValueSpecificationAction_3076); //$NON-NLS-1$
case AcceptEventActionEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?AcceptEventAction", UMLElementTypes.AcceptEventAction_3063); //$NON-NLS-1$
- case ReadVariableActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ReadVariableAction", UMLElementTypes.ReadVariableAction_3097); //$NON-NLS-1$
- case ActivityEditPartCN.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Activity", UMLElementTypes.Activity_3083); //$NON-NLS-1$
- case ObjectFlowEditPart.VISUAL_ID:
- return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?ObjectFlow", UMLElementTypes.ObjectFlow_4003); //$NON-NLS-1$
- case InputPinInAddVariableValueActionAsValueEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3101); //$NON-NLS-1$
case BroadcastSignalActionEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?BroadcastSignalAction", UMLElementTypes.BroadcastSignalAction_3102); //$NON-NLS-1$
- case InputPinInAddStructuralFeatureValueActionAsObjectEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3092); //$NON-NLS-1$
- case OutputPinInReadStructuralFeatureAsResultEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3090); //$NON-NLS-1$
- case ValuePinInSendSigActAsTargetEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3060); //$NON-NLS-1$
- case ForkNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ForkNode", UMLElementTypes.ForkNode_3040); //$NON-NLS-1$
case ExceptionHandlerEditPart.VISUAL_ID:
return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?ExceptionHandler", UMLElementTypes.ExceptionHandler_4005); //$NON-NLS-1$
- case ConstraintInActivityAsPostcondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3003); //$NON-NLS-1$
- case DestroyObjectActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DestroyObjectAction", UMLElementTypes.DestroyObjectAction_3095); //$NON-NLS-1$
- case ValuePinInSendObjActAsTargetEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3049); //$NON-NLS-1$
- case ValuePinInSendSigActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3054); //$NON-NLS-1$
+ case ReadStructuralFeatureActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ReadStructuralFeatureAction", UMLElementTypes.ReadStructuralFeatureAction_3088); //$NON-NLS-1$
+ case OutputPinInCreateObjectActionAsResultEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3087); //$NON-NLS-1$
case StructuredActivityNodeEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?StructuredActivityNode", UMLElementTypes.StructuredActivityNode_3065); //$NON-NLS-1$
- case ConditionalNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ConditionalNode", UMLElementTypes.ConditionalNode_3069); //$NON-NLS-1$
+ case IntervalConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?IntervalConstraint", UMLElementTypes.IntervalConstraint_3033); //$NON-NLS-1$
+ case InputPinInAddVariableValueActionAsInsertAtEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3100); //$NON-NLS-1$
+ case OutputPinInOpaqueActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3014); //$NON-NLS-1$
+ case LoopNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?LoopNode", UMLElementTypes.LoopNode_3071); //$NON-NLS-1$
+ case ActionInputPinInCallOpActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3021); //$NON-NLS-1$
case ReadSelfActionOutputPinEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3084); //$NON-NLS-1$
- case OutputPinInValSpecActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3077); //$NON-NLS-1$
+ case CreateObjectActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?CreateObjectAction", UMLElementTypes.CreateObjectAction_3086); //$NON-NLS-1$
+ case DestroyObjectActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DestroyObjectAction", UMLElementTypes.DestroyObjectAction_3095); //$NON-NLS-1$
+ case AddStructuralFeatureValueActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?AddStructuralFeatureValueAction", UMLElementTypes.AddStructuralFeatureValueAction_3091); //$NON-NLS-1$
+ case InputPinInCallOpActAsTargetEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3027); //$NON-NLS-1$
case CentralBufferNodeEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?CentralBufferNode", UMLElementTypes.CentralBufferNode_3104); //$NON-NLS-1$
- case InputPinInCallBeActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3019); //$NON-NLS-1$
- case InputPinInAddStructuralFeatureValueActionAsValueEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3093); //$NON-NLS-1$
- case OutputPinInCallBeActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3020); //$NON-NLS-1$
+ case TimeConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?TimeConstraint", UMLElementTypes.TimeConstraint_3036); //$NON-NLS-1$
case InputPinInCallOpActEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3023); //$NON-NLS-1$
- case ActionInputPinInSendSigActAsTargetEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3061); //$NON-NLS-1$
- case JoinNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?JoinNode", UMLElementTypes.JoinNode_3041); //$NON-NLS-1$
- case SendObjectActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?SendObjectAction", UMLElementTypes.SendObjectAction_3042); //$NON-NLS-1$
case ValuePinInCallOpActEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3022); //$NON-NLS-1$
+ case CommentEditPartCN.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Comment", UMLElementTypes.Comment_3080); //$NON-NLS-1$
case ActivityEditPart.VISUAL_ID:
return getImage("Navigator?TopLevelNode?http://www.eclipse.org/uml2/3.0.0/UML?Activity", UMLElementTypes.Activity_2001); //$NON-NLS-1$
- case LoopNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?LoopNode", UMLElementTypes.LoopNode_3071); //$NON-NLS-1$
- case ActivityParameterNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActivityParameterNode", UMLElementTypes.ActivityParameterNode_3059); //$NON-NLS-1$
+ case ExpansionNodeAsOutEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ExpansionNode", UMLElementTypes.ExpansionNode_3075); //$NON-NLS-1$
+ case OutputPinInCallOpActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3024); //$NON-NLS-1$
case ControlFlowEditPart.VISUAL_ID:
return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?ControlFlow", UMLElementTypes.ControlFlow_4004); //$NON-NLS-1$
- case OpaqueActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OpaqueAction", UMLElementTypes.OpaqueAction_3007); //$NON-NLS-1$
- case InputPinInAddVariableValueActionAsInsertAtEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3100); //$NON-NLS-1$
- case CallOperationActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?CallOperationAction", UMLElementTypes.CallOperationAction_3010); //$NON-NLS-1$
- case DurationConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DurationConstraint", UMLElementTypes.DurationConstraint_3035); //$NON-NLS-1$
- case InterruptibleActivityRegionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InterruptibleActivityRegion", UMLElementTypes.InterruptibleActivityRegion_3068); //$NON-NLS-1$
- case ActionInputPinInSendObjActAsTargetEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3050); //$NON-NLS-1$
- case DataStoreNodeEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DataStoreNode", UMLElementTypes.DataStoreNode_3078); //$NON-NLS-1$
+ case ActionInputPinInSendSigActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3053); //$NON-NLS-1$
+ case InputPinInSendSigActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3055); //$NON-NLS-1$
+ case ActionInputPinInOpaqueActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3016); //$NON-NLS-1$
+ case ShapeNamedElementEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?NamedElement", UMLElementTypes.NamedElement_3085); //$NON-NLS-1$
+ case InputPinInCallBeActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3019); //$NON-NLS-1$
+ case ActivityParameterNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActivityParameterNode", UMLElementTypes.ActivityParameterNode_3059); //$NON-NLS-1$
case IntervalConstraintAsLocalPrecondEditPart.VISUAL_ID:
return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?IntervalConstraint", UMLElementTypes.IntervalConstraint_3032); //$NON-NLS-1$
- case ExpansionRegionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ExpansionRegion", UMLElementTypes.ExpansionRegion_3070); //$NON-NLS-1$
- case OutputPinInOpaqueActEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3014); //$NON-NLS-1$
- case ConstraintInActivityAsPrecondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?Constraint", UMLElementTypes.Constraint_3002); //$NON-NLS-1$
- case TimeConstraintAsLocalPrecondEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?TimeConstraint", UMLElementTypes.TimeConstraint_3036); //$NON-NLS-1$
- case AddStructuralFeatureValueActionEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?AddStructuralFeatureValueAction", UMLElementTypes.AddStructuralFeatureValueAction_3091); //$NON-NLS-1$
- case OutputPinInCreateObjectActionAsResultEditPart.VISUAL_ID:
- return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3087); //$NON-NLS-1$
+ case InputPinInBroadcastSignalActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3103); //$NON-NLS-1$
+ case ValuePinInCallBeActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3017); //$NON-NLS-1$
+ case DecisionNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?DecisionNode", UMLElementTypes.DecisionNode_3038); //$NON-NLS-1$
+ case ValuePinInSendObjActAsReqEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3046); //$NON-NLS-1$
+ case InputPinInAddStructuralFeatureValueActionAsObjectEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3092); //$NON-NLS-1$
+ case ActionInputPinInSendSigActAsTargetEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3061); //$NON-NLS-1$
+ case ActivityPartitionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActivityPartition", UMLElementTypes.ActivityPartition_3067); //$NON-NLS-1$
+ case ValuePinInSendSigActAsTargetEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3060); //$NON-NLS-1$
+ case ForkNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ForkNode", UMLElementTypes.ForkNode_3040); //$NON-NLS-1$
+ case OutputPinInReadVariableActionAsResultEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3098); //$NON-NLS-1$
+ case InputPinInAddStructuralFeatureValueActionAsValueEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3093); //$NON-NLS-1$
+ case OutputPinInReadStructuralFeatureAsResultEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?OutputPin", UMLElementTypes.OutputPin_3090); //$NON-NLS-1$
+ case InputPinInAddVariableValueActionAsValueEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3101); //$NON-NLS-1$
+ case ValuePinInSendObjActAsTargetEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ValuePin", UMLElementTypes.ValuePin_3049); //$NON-NLS-1$
+ case InputPinInSendSigActAsTargetEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?InputPin", UMLElementTypes.InputPin_3062); //$NON-NLS-1$
+ case ActionLocalPreconditionEditPart.VISUAL_ID:
+ return getImage("Navigator?Link?http://www.eclipse.org/uml2/3.0.0/UML?Action?localPrecondition", UMLElementTypes.ActionLocalPrecondition_4001); //$NON-NLS-1$
+ case ActionInputPinInCallBeActEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ActionInputPin", UMLElementTypes.ActionInputPin_3018); //$NON-NLS-1$
+ case AddVariableValueActionEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?AddVariableValueAction", UMLElementTypes.AddVariableValueAction_3099); //$NON-NLS-1$
+ case ConditionalNodeEditPart.VISUAL_ID:
+ return getImage("Navigator?Node?http://www.eclipse.org/uml2/3.0.0/UML?ConditionalNode", UMLElementTypes.ConditionalNode_3069); //$NON-NLS-1$
}
return getImage("Navigator?UnknownElement", null); //$NON-NLS-1$
}
@@ -325,200 +325,200 @@ public class UMLNavigatorLabelProvider extends LabelProvider implements ICommonL
return getUnresolvedDomainElementProxyText(view);
}
switch(UMLVisualIDRegistry.getVisualID(view)) {
- case InputPinInDestroyObjectActionEditPart.VISUAL_ID:
- return getInputPin_3096Text(view);
- case ReadStructuralFeatureActionEditPart.VISUAL_ID:
- return getReadStructuralFeatureAction_3088Text(view);
+ case InputPinInSendObjActAsReqEditPart.VISUAL_ID:
+ return getInputPin_3048Text(view);
case ReadSelfActionEditPart.VISUAL_ID:
return getReadSelfAction_3081Text(view);
- case InputPinInBroadcastSignalActionEditPart.VISUAL_ID:
- return getInputPin_3103Text(view);
- case CommentEditPartCN.VISUAL_ID:
- return getComment_3080Text(view);
- case ConstraintAsLocalPrecondEditPart.VISUAL_ID:
- return getConstraint_3011Text(view);
- case ActionInputPinInCallOpActEditPart.VISUAL_ID:
- return getActionInputPin_3021Text(view);
- case TimeConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getTimeConstraint_3037Text(view);
- case FlowFinalNodeEditPart.VISUAL_ID:
- return getFlowFinalNode_3006Text(view);
- case InputPinInReadStructuralFeatureAsObjectEditPart.VISUAL_ID:
- return getInputPin_3089Text(view);
- case ActionInputPinInSendObjActAsReqEditPart.VISUAL_ID:
- return getActionInputPin_3047Text(view);
- case ValuePinInSendObjActAsReqEditPart.VISUAL_ID:
- return getValuePin_3046Text(view);
- case ActivityFinalNodeEditPart.VISUAL_ID:
- return getActivityFinalNode_3005Text(view);
- case InputPinInSendSigActEditPart.VISUAL_ID:
- return getInputPin_3055Text(view);
- case InputPinInSendSigActAsTargetEditPart.VISUAL_ID:
- return getInputPin_3062Text(view);
- case CommentLinkEditPart.VISUAL_ID:
- return getCommentAnnotatedElement_4006Text(view);
- case ValuePinInCallBeActEditPart.VISUAL_ID:
- return getValuePin_3017Text(view);
- case SendSignalActionEditPart.VISUAL_ID:
- return getSendSignalAction_3052Text(view);
- case ActionInputPinInCallOpActAsTargetEditPart.VISUAL_ID:
- return getActionInputPin_3026Text(view);
- case DurationConstraintAsLocalPrecondEditPart.VISUAL_ID:
- return getDurationConstraint_3034Text(view);
- case CallBehaviorActionEditPart.VISUAL_ID:
- return getCallBehaviorAction_3008Text(view);
- case ValueSpecificationActionEditPart.VISUAL_ID:
- return getValueSpecificationAction_3076Text(view);
+ case OutputPinInValSpecActEditPart.VISUAL_ID:
+ return getOutputPin_3077Text(view);
+ case ActivityDiagramEditPart.VISUAL_ID:
+ return getPackage_1000Text(view);
+ case CallOperationActionEditPart.VISUAL_ID:
+ return getCallOperationAction_3010Text(view);
case ExpansionNodeAsInEditPart.VISUAL_ID:
return getExpansionNode_3074Text(view);
- case ParameterEditPart.VISUAL_ID:
- return getParameter_3001Text(view);
- case ActionInputPinInOpaqueActEditPart.VISUAL_ID:
- return getActionInputPin_3016Text(view);
- case ConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getConstraint_3012Text(view);
- case OutputPinInCallOpActEditPart.VISUAL_ID:
- return getOutputPin_3024Text(view);
- case ActivityPartitionEditPart.VISUAL_ID:
- return getActivityPartition_3067Text(view);
- case DecisionNodeEditPart.VISUAL_ID:
- return getDecisionNode_3038Text(view);
+ case SendSignalActionEditPart.VISUAL_ID:
+ return getSendSignalAction_3052Text(view);
+ case JoinNodeEditPart.VISUAL_ID:
+ return getJoinNode_3041Text(view);
+ case CommentLinkEditPart.VISUAL_ID:
+ return getCommentAnnotatedElement_4006Text(view);
case ValuePinInCallOpActAsTargetEditPart.VISUAL_ID:
return getValuePin_3025Text(view);
case ValuePinInOpaqueActEditPart.VISUAL_ID:
return getValuePin_3015Text(view);
- case CreateObjectActionEditPart.VISUAL_ID:
- return getCreateObjectAction_3086Text(view);
+ case ExpansionRegionEditPart.VISUAL_ID:
+ return getExpansionRegion_3070Text(view);
+ case MergeNodeEditPart.VISUAL_ID:
+ return getMergeNode_3039Text(view);
+ case InputPinInReadStructuralFeatureAsObjectEditPart.VISUAL_ID:
+ return getInputPin_3089Text(view);
+ case InputPinInDestroyObjectActionEditPart.VISUAL_ID:
+ return getInputPin_3096Text(view);
+ case OutputPinInAddStructuralFeatureValueActionAsResultEditPart.VISUAL_ID:
+ return getOutputPin_3094Text(view);
case InputPinInSendObjActAsTargetEditPart.VISUAL_ID:
return getInputPin_3051Text(view);
- case ExpansionNodeAsOutEditPart.VISUAL_ID:
- return getExpansionNode_3075Text(view);
- case InitialNodeEditPart.VISUAL_ID:
- return getInitialNode_3004Text(view);
- case SequenceNodeEditPart.VISUAL_ID:
- return getSequenceNode_3073Text(view);
- case ActionInputPinInCallBeActEditPart.VISUAL_ID:
- return getActionInputPin_3018Text(view);
- case InputPinInSendObjActAsReqEditPart.VISUAL_ID:
- return getInputPin_3048Text(view);
+ case InterruptibleActivityRegionEditPart.VISUAL_ID:
+ return getInterruptibleActivityRegion_3068Text(view);
+ case ConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getConstraint_3012Text(view);
case InputPinInOpaqueActEditPart.VISUAL_ID:
return getInputPin_3013Text(view);
+ case SendObjectActionEditPart.VISUAL_ID:
+ return getSendObjectAction_3042Text(view);
+ case DurationConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getDurationConstraint_3035Text(view);
+ case OpaqueActionEditPart.VISUAL_ID:
+ return getOpaqueAction_3007Text(view);
+ case ObjectFlowEditPart.VISUAL_ID:
+ return getObjectFlow_4003Text(view);
+ case FlowFinalNodeEditPart.VISUAL_ID:
+ return getFlowFinalNode_3006Text(view);
+ case SequenceNodeEditPart.VISUAL_ID:
+ return getSequenceNode_3073Text(view);
+ case ActionInputPinInSendObjActAsReqEditPart.VISUAL_ID:
+ return getActionInputPin_3047Text(view);
+ case DurationConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ return getDurationConstraint_3034Text(view);
+ case ConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ return getConstraint_3011Text(view);
+ case ActionInputPinInSendObjActAsTargetEditPart.VISUAL_ID:
+ return getActionInputPin_3050Text(view);
+ case InitialNodeEditPart.VISUAL_ID:
+ return getInitialNode_3004Text(view);
+ case CallBehaviorActionEditPart.VISUAL_ID:
+ return getCallBehaviorAction_3008Text(view);
+ case ParameterEditPart.VISUAL_ID:
+ return getParameter_3001Text(view);
+ case ActivityEditPartCN.VISUAL_ID:
+ return getActivity_3083Text(view);
+ case ValuePinInSendSigActEditPart.VISUAL_ID:
+ return getValuePin_3054Text(view);
+ case ConstraintInActivityAsPostcondEditPart.VISUAL_ID:
+ return getConstraint_3003Text(view);
+ case ActivityFinalNodeEditPart.VISUAL_ID:
+ return getActivityFinalNode_3005Text(view);
+ case ReadVariableActionEditPart.VISUAL_ID:
+ return getReadVariableAction_3097Text(view);
+ case ActionInputPinInCallOpActAsTargetEditPart.VISUAL_ID:
+ return getActionInputPin_3026Text(view);
case ActionLocalPostconditionEditPart.VISUAL_ID:
return getActionLocalPostcondition_4002Text(view);
- case InputPinInCallOpActAsTargetEditPart.VISUAL_ID:
- return getInputPin_3027Text(view);
- case IntervalConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getIntervalConstraint_3033Text(view);
- case MergeNodeEditPart.VISUAL_ID:
- return getMergeNode_3039Text(view);
- case OutputPinInAddStructuralFeatureValueActionAsResultEditPart.VISUAL_ID:
- return getOutputPin_3094Text(view);
- case ActionLocalPreconditionEditPart.VISUAL_ID:
- return getActionLocalPrecondition_4001Text(view);
- case ActionInputPinInSendSigActEditPart.VISUAL_ID:
- return getActionInputPin_3053Text(view);
- case ActivityDiagramEditPart.VISUAL_ID:
- return getPackage_1000Text(view);
- case AddVariableValueActionEditPart.VISUAL_ID:
- return getAddVariableValueAction_3099Text(view);
+ case OutputPinInCallBeActEditPart.VISUAL_ID:
+ return getOutputPin_3020Text(view);
+ case ConstraintInActivityAsPrecondEditPart.VISUAL_ID:
+ return getConstraint_3002Text(view);
+ case DataStoreNodeEditPart.VISUAL_ID:
+ return getDataStoreNode_3078Text(view);
case OutputPinInAcceptEventActionEditPart.VISUAL_ID:
return getOutputPin_3064Text(view);
- case ShapeNamedElementEditPart.VISUAL_ID:
- return getNamedElement_3085Text(view);
- case OutputPinInReadVariableActionAsResultEditPart.VISUAL_ID:
- return getOutputPin_3098Text(view);
+ case TimeConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getTimeConstraint_3037Text(view);
+ case ValueSpecificationActionEditPart.VISUAL_ID:
+ return getValueSpecificationAction_3076Text(view);
case AcceptEventActionEditPart.VISUAL_ID:
return getAcceptEventAction_3063Text(view);
- case ReadVariableActionEditPart.VISUAL_ID:
- return getReadVariableAction_3097Text(view);
- case ActivityEditPartCN.VISUAL_ID:
- return getActivity_3083Text(view);
- case ObjectFlowEditPart.VISUAL_ID:
- return getObjectFlow_4003Text(view);
- case InputPinInAddVariableValueActionAsValueEditPart.VISUAL_ID:
- return getInputPin_3101Text(view);
case BroadcastSignalActionEditPart.VISUAL_ID:
return getBroadcastSignalAction_3102Text(view);
- case InputPinInAddStructuralFeatureValueActionAsObjectEditPart.VISUAL_ID:
- return getInputPin_3092Text(view);
- case OutputPinInReadStructuralFeatureAsResultEditPart.VISUAL_ID:
- return getOutputPin_3090Text(view);
- case ValuePinInSendSigActAsTargetEditPart.VISUAL_ID:
- return getValuePin_3060Text(view);
- case ForkNodeEditPart.VISUAL_ID:
- return getForkNode_3040Text(view);
case ExceptionHandlerEditPart.VISUAL_ID:
return getExceptionHandler_4005Text(view);
- case ConstraintInActivityAsPostcondEditPart.VISUAL_ID:
- return getConstraint_3003Text(view);
- case DestroyObjectActionEditPart.VISUAL_ID:
- return getDestroyObjectAction_3095Text(view);
- case ValuePinInSendObjActAsTargetEditPart.VISUAL_ID:
- return getValuePin_3049Text(view);
- case ValuePinInSendSigActEditPart.VISUAL_ID:
- return getValuePin_3054Text(view);
+ case ReadStructuralFeatureActionEditPart.VISUAL_ID:
+ return getReadStructuralFeatureAction_3088Text(view);
+ case OutputPinInCreateObjectActionAsResultEditPart.VISUAL_ID:
+ return getOutputPin_3087Text(view);
case StructuredActivityNodeEditPart.VISUAL_ID:
return getStructuredActivityNode_3065Text(view);
- case ConditionalNodeEditPart.VISUAL_ID:
- return getConditionalNode_3069Text(view);
+ case IntervalConstraintAsLocalPostcondEditPart.VISUAL_ID:
+ return getIntervalConstraint_3033Text(view);
+ case InputPinInAddVariableValueActionAsInsertAtEditPart.VISUAL_ID:
+ return getInputPin_3100Text(view);
+ case OutputPinInOpaqueActEditPart.VISUAL_ID:
+ return getOutputPin_3014Text(view);
+ case LoopNodeEditPart.VISUAL_ID:
+ return getLoopNode_3071Text(view);
+ case ActionInputPinInCallOpActEditPart.VISUAL_ID:
+ return getActionInputPin_3021Text(view);
case ReadSelfActionOutputPinEditPart.VISUAL_ID:
return getOutputPin_3084Text(view);
- case OutputPinInValSpecActEditPart.VISUAL_ID:
- return getOutputPin_3077Text(view);
+ case CreateObjectActionEditPart.VISUAL_ID:
+ return getCreateObjectAction_3086Text(view);
+ case DestroyObjectActionEditPart.VISUAL_ID:
+ return getDestroyObjectAction_3095Text(view);
+ case AddStructuralFeatureValueActionEditPart.VISUAL_ID:
+ return getAddStructuralFeatureValueAction_3091Text(view);
+ case InputPinInCallOpActAsTargetEditPart.VISUAL_ID:
+ return getInputPin_3027Text(view);
case CentralBufferNodeEditPart.VISUAL_ID:
return getCentralBufferNode_3104Text(view);
- case InputPinInCallBeActEditPart.VISUAL_ID:
- return getInputPin_3019Text(view);
- case InputPinInAddStructuralFeatureValueActionAsValueEditPart.VISUAL_ID:
- return getInputPin_3093Text(view);
- case OutputPinInCallBeActEditPart.VISUAL_ID:
- return getOutputPin_3020Text(view);
+ case TimeConstraintAsLocalPrecondEditPart.VISUAL_ID:
+ return getTimeConstraint_3036Text(view);
case InputPinInCallOpActEditPart.VISUAL_ID:
return getInputPin_3023Text(view);
- case ActionInputPinInSendSigActAsTargetEditPart.VISUAL_ID:
- return getActionInputPin_3061Text(view);
- case JoinNodeEditPart.VISUAL_ID:
- return getJoinNode_3041Text(view);
- case SendObjectActionEditPart.VISUAL_ID:
- return getSendObjectAction_3042Text(view);
case ValuePinInCallOpActEditPart.VISUAL_ID:
return getValuePin_3022Text(view);
+ case CommentEditPartCN.VISUAL_ID:
+ return getComment_3080Text(view);
case ActivityEditPart.VISUAL_ID:
return getActivity_2001Text(view);
- case LoopNodeEditPart.VISUAL_ID:
- return getLoopNode_3071Text(view);
- case ActivityParameterNodeEditPart.VISUAL_ID:
- return getActivityParameterNode_3059Text(view);
+ case ExpansionNodeAsOutEditPart.VISUAL_ID:
+ return getExpansionNode_3075Text(view);
+ case OutputPinInCallOpActEditPart.VISUAL_ID:
+ return getOutputPin_3024Text(view);
case ControlFlowEditPart.VISUAL_ID:
return getControlFlow_4004Text(view);
- case OpaqueActionEditPart.VISUAL_ID:
- return getOpaqueAction_3007Text(view);
- case InputPinInAddVariableValueActionAsInsertAtEditPart.VISUAL_ID:
- return getInputPin_3100Text(view);
- case CallOperationActionEditPart.VISUAL_ID:
- return getCallOperationAction_3010Text(view);
- case DurationConstraintAsLocalPostcondEditPart.VISUAL_ID:
- return getDurationConstraint_3035Text(view);
- case InterruptibleActivityRegionEditPart.VISUAL_ID:
- return getInterruptibleActivityRegion_3068Text(view);
- case ActionInputPinInSendObjActAsTargetEditPart.VISUAL_ID:
- return getActionInputPin_3050Text(view);
- case DataStoreNodeEditPart.VISUAL_ID:
- return getDataStoreNode_3078Text(view);
+ case ActionInputPinInSendSigActEditPart.VISUAL_ID:
+ return getActionInputPin_3053Text(view);
+ case InputPinInSendSigActEditPart.VISUAL_ID:
+ return getInputPin_3055Text(view);
+ case ActionInputPinInOpaqueActEditPart.VISUAL_ID:
+ return getActionInputPin_3016Text(view);
+ case ShapeNamedElementEditPart.VISUAL_ID:
+ return getNamedElement_3085Text(view);
+ case InputPinInCallBeActEditPart.VISUAL_ID:
+ return getInputPin_3019Text(view);
+ case ActivityParameterNodeEditPart.VISUAL_ID:
+ return getActivityParameterNode_3059Text(view);
case IntervalConstraintAsLocalPrecondEditPart.VISUAL_ID:
return getIntervalConstraint_3032Text(view);
- case ExpansionRegionEditPart.VISUAL_ID:
- return getExpansionRegion_3070Text(view);
- case OutputPinInOpaqueActEditPart.VISUAL_ID:
- return getOutputPin_3014Text(view);
- case ConstraintInActivityAsPrecondEditPart.VISUAL_ID:
- return getConstraint_3002Text(view);
- case TimeConstraintAsLocalPrecondEditPart.VISUAL_ID:
- return getTimeConstraint_3036Text(view);
- case AddStructuralFeatureValueActionEditPart.VISUAL_ID:
- return getAddStructuralFeatureValueAction_3091Text(view);
- case OutputPinInCreateObjectActionAsResultEditPart.VISUAL_ID:
- return getOutputPin_3087Text(view);
+ case InputPinInBroadcastSignalActionEditPart.VISUAL_ID:
+ return getInputPin_3103Text(view);
+ case ValuePinInCallBeActEditPart.VISUAL_ID:
+ return getValuePin_3017Text(view);
+ case DecisionNodeEditPart.VISUAL_ID:
+ return getDecisionNode_3038Text(view);
+ case ValuePinInSendObjActAsReqEditPart.VISUAL_ID:
+ return getValuePin_3046Text(view);
+ case InputPinInAddStructuralFeatureValueActionAsObjectEditPart.VISUAL_ID:
+ return getInputPin_3092Text(view);
+ case ActionInputPinInSendSigActAsTargetEditPart.VISUAL_ID:
+ return getActionInputPin_3061Text(view);
+ case ActivityPartitionEditPart.VISUAL_ID:
+ return getActivityPartition_3067Text(view);
+ case ValuePinInSendSigActAsTargetEditPart.VISUAL_ID:
+ return getValuePin_3060Text(view);
+ case ForkNodeEditPart.VISUAL_ID:
+ return getForkNode_3040Text(view);
+ case OutputPinInReadVariableActionAsResultEditPart.VISUAL_ID:
+ return getOutputPin_3098Text(view);
+ case InputPinInAddStructuralFeatureValueActionAsValueEditPart.VISUAL_ID:
+ return getInputPin_3093Text(view);
+ case OutputPinInReadStructuralFeatureAsResultEditPart.VISUAL_ID:
+ return getOutputPin_3090Text(view);
+ case InputPinInAddVariableValueActionAsValueEditPart.VISUAL_ID:
+ return getInputPin_3101Text(view);
+ case ValuePinInSendObjActAsTargetEditPart.VISUAL_ID:
+ return getValuePin_3049Text(view);
+ case InputPinInSendSigActAsTargetEditPart.VISUAL_ID:
+ return getInputPin_3062Text(view);
+ case ActionLocalPreconditionEditPart.VISUAL_ID:
+ return getActionLocalPrecondition_4001Text(view);
+ case ActionInputPinInCallBeActEditPart.VISUAL_ID:
+ return getActionInputPin_3018Text(view);
+ case AddVariableValueActionEditPart.VISUAL_ID:
+ return getAddVariableValueAction_3099Text(view);
+ case ConditionalNodeEditPart.VISUAL_ID:
+ return getConditionalNode_3069Text(view);
}
return getUnknownElementText(view);
}

Back to the top