diff options
| author | Laurent Redor | 2021-02-18 16:16:30 +0000 |
|---|---|---|
| committer | Laurent Redor | 2021-02-19 09:46:38 +0000 |
| commit | 0e4b2362e18f6729ad676ec1e1ad6d7ffeea6bd9 (patch) | |
| tree | ebd1213d7b8b5b1f2cc89ef530629aa769d249f7 | |
| parent | 753dc1ed3a8a1d768c63f3d4618356efc017ccbd (diff) | |
| download | org.eclipse.sirius-0e4b2362e18f6729ad676ec1e1ad6d7ffeea6bd9.tar.gz org.eclipse.sirius-0e4b2362e18f6729ad676ec1e1ad6d7ffeea6bd9.tar.xz org.eclipse.sirius-0e4b2362e18f6729ad676ec1e1ad6d7ffeea6bd9.zip | |
[571304] Copy the format of label on border in sequence diagram
The method
org.eclipse.sirius.diagram.ui.business.api.view.SiriusGMFHelper.getLabelNode(View)
has been update. Indeed, with the copy/paste API, the label is not
always in first position of the children list.
The data has been regenerated. Even if there is no label displayed in
sequence tests, the VSM describes a label, not displayed, on border of
Execution and on Lifeline. So the model is impacted even if the
displayed diagram is not.
Bug: 571304
Change-Id: I4cff0a4f24e7e1703b206f7e71952d8a9fab35f3
Signed-off-by: Laurent Redor <laurent.redor@obeo.fr>
20 files changed, 1711 insertions, 1356 deletions
diff --git a/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/business/api/view/SiriusGMFHelper.java b/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/business/api/view/SiriusGMFHelper.java index 5c629b338a..d7af412d18 100644 --- a/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/business/api/view/SiriusGMFHelper.java +++ b/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/business/api/view/SiriusGMFHelper.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 THALES GLOBAL SERVICES. + * Copyright (c) 2009, 2021 THALES GLOBAL SERVICES. * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at @@ -13,6 +13,7 @@ package org.eclipse.sirius.diagram.ui.business.api.view; import java.util.Arrays; +import java.util.Optional; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.resource.Resource; @@ -295,12 +296,9 @@ public final class SiriusGMFHelper { */ public static Node getLabelNode(final View gmfView) { Node result = null; - if (!gmfView.getChildren().isEmpty()) { - final View labelView = (View) gmfView.getChildren().iterator().next(); - - if (labelView instanceof Node && SiriusGMFHelper.isLabel(labelView)) { - result = (Node) labelView; - } + Optional<Object> optionalLabelView = gmfView.getChildren().stream().filter(child -> child instanceof Node && SiriusGMFHelper.isLabel((Node) child)).findFirst(); + if (optionalLabelView.isPresent()) { + result = (Node) optionalLabelView.get(); } return result; } diff --git a/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/api/format/MappingBasedSiriusFormatManagerFactory.java b/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/api/format/MappingBasedSiriusFormatManagerFactory.java index 98f0ece7e9..d3e1bad7c8 100644 --- a/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/api/format/MappingBasedSiriusFormatManagerFactory.java +++ b/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/api/format/MappingBasedSiriusFormatManagerFactory.java @@ -44,12 +44,14 @@ import org.eclipse.sirius.business.api.session.Session; import org.eclipse.sirius.common.tools.api.util.EqualityHelper; import org.eclipse.sirius.diagram.DDiagram; import org.eclipse.sirius.diagram.DDiagramElement; +import org.eclipse.sirius.diagram.DNode; import org.eclipse.sirius.diagram.DSemanticDiagram; import org.eclipse.sirius.diagram.DiagramPlugin; import org.eclipse.sirius.diagram.business.api.diagramtype.DiagramTypeDescriptorRegistry; import org.eclipse.sirius.diagram.business.api.diagramtype.IDiagramTypeDescriptor; import org.eclipse.sirius.diagram.business.api.helper.display.DisplayMode; import org.eclipse.sirius.diagram.business.api.helper.display.DisplayServiceManager; +import org.eclipse.sirius.diagram.business.api.query.DNodeQuery; import org.eclipse.sirius.diagram.business.api.refresh.CanonicalSynchronizer; import org.eclipse.sirius.diagram.business.api.refresh.CanonicalSynchronizerFactory; import org.eclipse.sirius.diagram.business.api.refresh.DiagramCreationUtil; @@ -490,6 +492,9 @@ public class MappingBasedSiriusFormatManagerFactory { MappingBasedSiriusFormatManagerFactoryHelper.copyNodeLayout(sourceNode, targetNode); formatDataManager.copySiriusStyle(entry.getKey(), entry.getValue()); formatDataManager.copyGMFStyle(sourceNode, targetNode); + if (entry.getKey() instanceof DNode && new DNodeQuery((DNode) entry.getKey()).hasLabelOnBorder()) { + MappingBasedSiriusFormatManagerFactoryHelper.copyBorderLabelLayout(sourceNode, targetNode); + } } else if (sourceGmfView instanceof Edge && targetGmfView instanceof Edge) { Edge sourceEdge = (Edge) sourceGmfView; Edge targetEdge = (Edge) targetGmfView; diff --git a/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/internal/format/semantic/diagram/util/MappingBasedSiriusFormatManagerFactoryHelper.java b/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/internal/format/semantic/diagram/util/MappingBasedSiriusFormatManagerFactoryHelper.java index 926db47977..f79ae09737 100644 --- a/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/internal/format/semantic/diagram/util/MappingBasedSiriusFormatManagerFactoryHelper.java +++ b/plugins/org.eclipse.sirius.diagram.ui/src-diag/org/eclipse/sirius/diagram/ui/tools/internal/format/semantic/diagram/util/MappingBasedSiriusFormatManagerFactoryHelper.java @@ -151,6 +151,22 @@ public final class MappingBasedSiriusFormatManagerFactoryHelper { } /** + * Copy border label layout information from {@code sourceNode} to {@code targetNode}. + * + * @param sourceNode + * The source node + * @param targetNode + * The target node + */ + public static void copyBorderLabelLayout(Node sourceNode, Node targetNode) { + final Node sourceLabelNode = SiriusGMFHelper.getLabelNode(sourceNode); + final Node targetLabelNode = SiriusGMFHelper.getLabelNode(targetNode); + if (sourceLabelNode != null && targetLabelNode != null) { + copyNodeLayout(sourceLabelNode, targetLabelNode); + } + } + + /** * Copy label layout information from {@code sourceEdge} to {@code targetEdge}. * * @param sourceEdge diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__full__New.xmi index 88063accbc..71bf115777 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__full__New.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.0" width="120" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fXSgwGyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_eIV7UHKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -25,7 +25,7 @@ <location x="50" y="130"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.0/@ownedOperands.0" width="120" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fXSgwmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_eIWiYHKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -40,7 +40,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.1" width="120" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fXSgw2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_eIWiYXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -64,7 +64,7 @@ <location x="220" y="240"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.1/@ownedOperands.0" width="120" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fXTH0WyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_eIWiY3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -80,14 +80,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.4/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fXTH12yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eIXJcnKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -99,7 +99,10 @@ <location y="400"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fXTH0myeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.4/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eIWiZHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -107,7 +110,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -117,7 +120,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -139,13 +142,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.0" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_fXTH1WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.4/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eIXJcHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -155,7 +161,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -168,14 +174,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.4/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fXTH3WyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eIXwgXKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -187,7 +193,10 @@ <location y="400"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fXTH2GyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.4/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eIXJc3KGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -195,7 +204,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -205,7 +214,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -227,13 +236,16 @@ <location x="220" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.1" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_fXTH22yeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.4/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eIXJdnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -243,7 +255,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__full__New.xmi index a0bfada322..a915d6f817 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__full__New.xmi @@ -2,14 +2,14 @@ <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.0" width="20" height="40"> <label id="//@ownedInteractions.1/@executions.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fbaLxmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_ePBLGHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -21,7 +21,10 @@ <location x="-5" y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.1" width="20" height="340"> - <siriusStyle xsi:type="diagram:Square" uid="_fbay22yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.1/@executions.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePDAR3KGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -30,7 +33,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -40,7 +43,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -50,7 +53,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -60,7 +63,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -71,7 +74,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -81,7 +84,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-12" y="250" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -94,14 +97,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.10" width="20" height="40"> <label id="//@ownedInteractions.1/@executions.10"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fbbZ62yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_ePDnW3KGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -113,7 +116,10 @@ <location x="-5" y="450"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.2" width="20" height="170"> - <siriusStyle xsi:type="diagram:Square" uid="_fbbZ4GyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <label id="//@ownedInteractions.1/@executions.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePDnUHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -121,7 +127,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -131,7 +137,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -141,7 +147,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -151,7 +157,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -163,14 +169,17 @@ <location x="15" y="40"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.3" width="20" height="130"> - <siriusStyle xsi:type="diagram:Square" uid="_fbbZ5GyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> + <label id="//@ownedInteractions.1/@executions.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePDnVHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -180,7 +189,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -190,7 +199,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -202,13 +211,16 @@ <location x="15" y="20"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.4" width="20" height="90"> - <siriusStyle xsi:type="diagram:Square" uid="_fbbZ52yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="145,210,211"> + <label id="//@ownedInteractions.1/@executions.4"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePDnV3KGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="145,210,211"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -218,7 +230,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -231,14 +243,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.5" width="20" height="50"> <label id="//@ownedInteractions.1/@executions.5"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fbbZ6WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="128,201,205"> + <siriusStyle xsi:type="diagram:Square" uid="_ePDnWXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="128,201,205"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -251,14 +263,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.6" width="20" height="90"> <label id="//@ownedInteractions.1/@executions.6"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fbaLx2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_ePBLGXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -271,14 +283,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.7" width="20" height="50"> <label id="//@ownedInteractions.1/@executions.7"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fbbZ6myeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_ePDnWnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -290,13 +302,16 @@ <location x="15" y="250"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.8" width="20" height="100"> - <siriusStyle xsi:type="diagram:Square" uid="_fbaLyGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.1/@executions.8"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePBLGnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -306,7 +321,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="40"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -319,14 +334,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.9" width="20" height="40"> <label id="//@ownedInteractions.1/@executions.9"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fbaLymyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_ePBLHHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -339,14 +354,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.1/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fbaLy2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_ePBLHXKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -358,7 +373,10 @@ <location y="696"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fbZksGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.1/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePAkAHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -366,7 +384,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -377,7 +395,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -389,7 +407,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -399,7 +417,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="40"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -410,7 +428,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -420,7 +438,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="696" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -442,13 +460,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.0" width="10" height="696"> - <siriusStyle xsi:type="diagram:Square" uid="_fbaLwGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.1/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePBLEnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -459,7 +480,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -471,7 +492,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -481,7 +502,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="40"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -492,7 +513,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -502,7 +523,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="696" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -515,14 +536,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.1/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fbbZ7myeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_ePEOYnKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -534,7 +555,10 @@ <location y="696"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fbaLzGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.1/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePByIHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -546,7 +570,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -556,7 +580,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -566,7 +590,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -576,7 +600,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -587,7 +611,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -597,7 +621,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-12" y="250" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -608,7 +632,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -619,7 +643,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -651,7 +675,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-53" y="587" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -673,7 +697,10 @@ <location x="220" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.1" width="10" height="696"> - <siriusStyle xsi:type="diagram:Square" uid="_fbay0GyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.1/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ePCZMHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -683,7 +710,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -693,7 +720,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -703,7 +730,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -713,7 +740,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -724,7 +751,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -734,7 +761,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-12" y="250" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -745,7 +772,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -756,7 +783,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -788,7 +815,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-53" y="587" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -803,7 +830,7 @@ <label id="//@ownedInteractions.1/@states.0"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_fbbZ7GyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_ePEOYHKGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -823,7 +850,7 @@ <label id="//@ownedInteractions.1/@states.1"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_fbbZ7WyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_ePEOYXKGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@conditionnalStyles.0/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__full__New.xmi index ebfe528ef7..05d9a95425 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__full__New.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.3/@interactionUses.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_feptDWyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_eT-jlnKGEeu0Jfg10F8cWA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -16,7 +16,7 @@ <location x="50" y="130"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@interactionUses.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_feptDGyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_eT-jlXKGEeu0Jfg10F8cWA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -32,14 +32,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.3/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_feptC2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eT-jlHKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -51,7 +51,10 @@ <location y="400"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_feptBmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.3/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eT98hnKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -59,7 +62,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -69,7 +72,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -91,13 +94,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.0" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_feptCWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.3/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eT-jknKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -107,7 +113,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -120,14 +126,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.3/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_feptBWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eT98hXKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -139,7 +145,10 @@ <location y="400"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_feptAGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.3/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eT98gHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -147,7 +156,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -157,7 +166,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -179,13 +188,16 @@ <location x="220" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.1" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_feptA2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.3/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eT98g3KGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -195,7 +207,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__full__New.xmi index 12456b3480..b778609549 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__full__New.xmi @@ -2,14 +2,14 @@ <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.6/@executions.0" width="20" height="90"> <label id="//@ownedInteractions.6/@executions.0"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fjLApmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_eb04BnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -22,9 +22,9 @@ <label id="//@ownedInteractions.6/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAp2yeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04B3KGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_fjLAqGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04CHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -51,14 +51,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@executions.1" width="20" height="50"> <label id="//@ownedInteractions.6/@executions.1"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_fjLAqWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_eb04CXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -73,9 +73,9 @@ <label id="//@ownedInteractions.6/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLnsGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04IHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_fjLnsWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04IXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -102,7 +102,7 @@ <label id="//@ownedInteractions.6/@messages.0"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjLArGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_eb04DHKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -120,9 +120,9 @@ <label id="//@ownedInteractions.6/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLArWyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04DXKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_fjLArmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04DnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -151,9 +151,9 @@ <label id="//@ownedInteractions.6/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLnsmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04InKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fjLns2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04I3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -180,7 +180,7 @@ <label id="//@ownedInteractions.6/@messages.1"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjLAr2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_eb04D3KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -200,9 +200,9 @@ <label id="//@ownedInteractions.6/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAvGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04HHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjLAvWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04HXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -229,7 +229,7 @@ <label id="//@ownedInteractions.6/@messages.2"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjKZqGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_eb0Q83KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -249,9 +249,9 @@ <label id="//@ownedInteractions.6/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAvmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04HnKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_fjLAv2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04H3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -278,7 +278,7 @@ <label id="//@ownedInteractions.6/@messages.3"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjLAq2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_eb04C3KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -298,9 +298,9 @@ <label id="//@ownedInteractions.6/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAtGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04FHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_fjLAtWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04FXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -327,7 +327,7 @@ <label id="//@ownedInteractions.6/@messages.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjJyhmyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_ebybxnKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -345,9 +345,9 @@ <label id="//@ownedInteractions.6/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjJyh2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ebybx3KGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_fjJyiGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_ebybyHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -376,9 +376,9 @@ <label id="//@ownedInteractions.6/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAtmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04FnKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fjLAt2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04F3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -405,7 +405,7 @@ <label id="//@ownedInteractions.6/@messages.5"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjJyiWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_ebzp4HKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -423,9 +423,9 @@ <label id="//@ownedInteractions.6/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjJyimyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ebzp4XKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fjJyi2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_ebzp4nKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -454,9 +454,9 @@ <label id="//@ownedInteractions.6/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAsGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04EHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjLAsWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04EXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -483,7 +483,7 @@ <label id="//@ownedInteractions.6/@messages.6"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjJygGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_ebybwHKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -501,9 +501,9 @@ <label id="//@ownedInteractions.6/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjJygWyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ebybwXKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjJygmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_ebybwnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -532,9 +532,9 @@ <label id="//@ownedInteractions.6/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAsmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04EnKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjLAs2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04E3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -561,7 +561,7 @@ <label id="//@ownedInteractions.6/@messages.7"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjJyg2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_ebybw3KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -579,9 +579,9 @@ <label id="//@ownedInteractions.6/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjJyhGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ebybxHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjJyhWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_ebybxXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -610,9 +610,9 @@ <label id="//@ownedInteractions.6/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAuGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04GHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjLAuWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04GXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -639,7 +639,7 @@ <label id="//@ownedInteractions.6/@messages.8"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjKZkGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_ebzp43KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -659,9 +659,9 @@ <label id="//@ownedInteractions.6/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjLAumyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb04GnKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_fjLAu2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb04G3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -688,7 +688,7 @@ <label id="//@ownedInteractions.6/@messages.9"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjKZkWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_ebzp5HKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -706,14 +706,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.6/@participants.0"> - <location x="-1"/> + <location x="-44"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fjKZp2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eb0Q8nKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -725,7 +725,10 @@ <location y="450"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fjKZkmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.6/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ebzp5XKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -733,7 +736,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -765,13 +768,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.0" width="10" height="450"> - <siriusStyle xsi:type="diagram:Square" uid="_fjKZnWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.6/@participants.0"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_ebzp8HKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -794,9 +800,9 @@ <label id="//@ownedInteractions.6/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjKZn2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ebzp8nKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fjKZoGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_ebzp83KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -823,9 +829,9 @@ <label id="//@ownedInteractions.6/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjKZoWyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ebzp9HKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_fjKZomyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_ebzp9XKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -852,9 +858,9 @@ <label id="//@ownedInteractions.6/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjKZo2yeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ebzp9nKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjKZpGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_ebzp93KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -881,9 +887,9 @@ <label id="//@ownedInteractions.6/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fjKZpWyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eb0Q8HKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fjKZpmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eb0Q8XKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -910,14 +916,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.1" width="50" height="50"> <label id="//@ownedInteractions.6/@participants.1"> - <location x="-1"/> + <location x="-4"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fjLAqmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_eb04CnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -929,7 +935,10 @@ <location x="-20" y="315"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fjKZqWyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.6/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eb0Q9HKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -937,7 +946,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -948,7 +957,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -959,7 +968,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -991,13 +1000,16 @@ <location x="315" y="110"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.1" width="10" height="315"> - <siriusStyle xsi:type="diagram:Square" uid="_fjLAoGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.6/@participants.1"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eb04AHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1008,7 +1020,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1019,7 +1031,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__full__New.xmi index f9aa27fdc4..99da02253e 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__full__New.xmi @@ -4,9 +4,9 @@ <label id="//@ownedInteractions.0/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn1eMWyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eiuxR3KGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn1eMmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eiuxSHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -31,9 +31,9 @@ <label id="//@ownedInteractions.0/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn1eM2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eivYUHKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn1eNGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eivYUXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -58,9 +58,9 @@ <label id="//@ownedInteractions.0/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn1eNWyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eivYUnKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn1eNmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eivYU3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -88,9 +88,9 @@ <label id="//@ownedInteractions.0/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn1eN2yeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eivYVHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fn1eOGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eivYVXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -116,9 +116,9 @@ <label id="//@ownedInteractions.0/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn1eOWyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eivYVnKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn1eOmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eivYV3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -146,9 +146,9 @@ <label id="//@ownedInteractions.0/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn1eO2yeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eivYWHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fn1ePGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eivYWXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -174,9 +174,9 @@ <label id="//@ownedInteractions.0/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn1ePWyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eivYWnKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn1ePmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eivYW3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -199,14 +199,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.0/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fn03ImyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eitjKXKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -218,7 +218,10 @@ <location y="375"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fn0QGmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eitjIHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -226,7 +229,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -236,7 +239,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -258,13 +261,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.0" width="10" height="375"> - <siriusStyle xsi:type="diagram:Square" uid="_fn0QH2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eitjJXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -274,7 +280,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -287,9 +293,9 @@ <label id="//@ownedInteractions.0/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn03IGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eitjJ3KGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn03IWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eitjKHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -314,14 +320,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.0/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fn0QGWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eis8GXKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -333,7 +339,10 @@ <location y="375"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fn0QEGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eis8EHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -341,7 +350,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -351,7 +360,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -373,13 +382,16 @@ <location x="220" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.1" width="10" height="375"> - <siriusStyle xsi:type="diagram:Square" uid="_fn0QFWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eis8FXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -389,7 +401,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -402,9 +414,9 @@ <label id="//@ownedInteractions.0/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn0QF2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eis8F3KGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn0QGGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eis8GHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -429,14 +441,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.2" width="10" height="10"> <label id="//@ownedInteractions.0/@participants.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_fn1eMGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_eiuxRnKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -448,7 +460,10 @@ <location y="375"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.2" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fn03LWyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eiuKMXKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -456,7 +471,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -466,7 +481,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -488,13 +503,16 @@ <location x="390" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.2" width="10" height="375"> - <siriusStyle xsi:type="diagram:Square" uid="_fn03OGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eiuKPHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -504,7 +522,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -517,9 +535,9 @@ <label id="//@ownedInteractions.0/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn03OmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eiuKPnKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn03O2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eiuKP3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -547,9 +565,9 @@ <label id="//@ownedInteractions.0/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn03PGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eiuxQHKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn03PWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eiuxQXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -574,9 +592,9 @@ <label id="//@ownedInteractions.0/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn03PmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eiuxQnKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fn03P2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eiuxQ3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -602,9 +620,9 @@ <label id="//@ownedInteractions.0/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn03QGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eiuxRHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_fn03QWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eiuxRXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -630,14 +648,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.3" width="50" height="50"> <label id="//@ownedInteractions.0/@participants.3"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fn03LGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_eiuKMHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -649,13 +667,16 @@ <location x="-20" y="60"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.3" width="10" height="60"> - <siriusStyle xsi:type="diagram:Square" uid="_fn03KGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eitjL3KGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -665,7 +686,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="60" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -678,9 +699,9 @@ <label id="//@ownedInteractions.0/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fn03KmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_eitjMXKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_fn03K2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_eitjMnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -707,7 +728,10 @@ <location x="55" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.3" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_fn03I2yeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_eitjKnKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -715,7 +739,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -725,7 +749,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="60" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__full__New.xmi index 47fb05a7d0..c8707c338f 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__full__New.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0" width="270" height="150"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f0DVZWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_exFWUXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -34,7 +34,7 @@ <location x="50" y="515"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0/@ownedOperands.0" width="270" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f0D8UmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_exFWVHKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -49,7 +49,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0/@ownedOperands.1" width="270" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f0D8U2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_exFWVXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -67,9 +67,9 @@ <label id="//@ownedInteractions.7/@constraints.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0D8cmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exF9YnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0D8c2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exF9Y3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -100,9 +100,9 @@ <label id="//@ownedInteractions.7/@constraints.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0D8ZGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exFWZnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0D8ZWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exFWZ3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -133,9 +133,9 @@ <label id="//@ownedInteractions.7/@constraints.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0D8YmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exFWZHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0D8Y2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exFWZXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -166,9 +166,9 @@ <label id="//@ownedInteractions.7/@constraints.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0D8YGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exFWYnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0D8YWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exFWY3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -199,9 +199,9 @@ <label id="//@ownedInteractions.7/@constraints.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0D8XmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exFWYHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0D8X2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exFWYXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -232,7 +232,7 @@ <label id="//@ownedInteractions.7/@ends.0"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CHIWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exDhIXKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -252,7 +252,7 @@ <label id="//@ownedInteractions.7/@ends.1"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CHI2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exDhI3KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -272,7 +272,7 @@ <label id="//@ownedInteractions.7/@ends.10"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuO2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIPnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -292,7 +292,7 @@ <label id="//@ownedInteractions.7/@ends.11"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuPGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIP3KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -312,7 +312,7 @@ <label id="//@ownedInteractions.7/@ends.12"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuPWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIQHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -332,7 +332,7 @@ <label id="//@ownedInteractions.7/@ends.13"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuPmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIQXKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -352,7 +352,7 @@ <label id="//@ownedInteractions.7/@ends.14"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CHIGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exDhIHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -372,7 +372,7 @@ <label id="//@ownedInteractions.7/@ends.15"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CHImyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exDhInKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -392,7 +392,7 @@ <label id="//@ownedInteractions.7/@ends.16"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CHJGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exDhJHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -412,7 +412,7 @@ <label id="//@ownedInteractions.7/@ends.17"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CHKGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIMnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -432,7 +432,7 @@ <label id="//@ownedInteractions.7/@ends.18"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuMmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEINXKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -452,7 +452,7 @@ <label id="//@ownedInteractions.7/@ends.19"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuNGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIN3KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -470,9 +470,9 @@ <label id="//@ownedInteractions.7/@constraints.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0CuNWyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exEIOHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0CuNmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exEIOXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -505,7 +505,7 @@ <label id="//@ownedInteractions.7/@ends.2"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CHJWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exDhJXKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -523,9 +523,9 @@ <label id="//@ownedInteractions.7/@constraints.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0CHJmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exEIMHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0CHJ2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exEIMXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -558,7 +558,7 @@ <label id="//@ownedInteractions.7/@ends.20"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0D8VWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exFWV3KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -578,7 +578,7 @@ <label id="//@ownedInteractions.7/@ends.21"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0D8VmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exFWWHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -598,7 +598,7 @@ <label id="//@ownedInteractions.7/@ends.3"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuMWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEINHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -618,7 +618,7 @@ <label id="//@ownedInteractions.7/@ends.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuM2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEINnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -638,7 +638,7 @@ <label id="//@ownedInteractions.7/@ends.5"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuN2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIOnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -658,7 +658,7 @@ <label id="//@ownedInteractions.7/@ends.6"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0CuOGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEIO3KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -676,9 +676,9 @@ <label id="//@ownedInteractions.7/@constraints.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0CuOWyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exEIPHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0CuOmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exEIPXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -711,7 +711,7 @@ <label id="//@ownedInteractions.7/@ends.7"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0D8V2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exFWWXKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -729,9 +729,9 @@ <label id="//@ownedInteractions.7/@constraints.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0D8WGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exFWWnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0D8WWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exFWW3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -764,7 +764,7 @@ <label id="//@ownedInteractions.7/@ends.8"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0D8WmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exFWXHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -784,7 +784,7 @@ <label id="//@ownedInteractions.7/@ends.9"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0D8W2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exFWXXKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -802,9 +802,9 @@ <label id="//@ownedInteractions.7/@constraints.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_f0D8XGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_exFWXnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_f0D8XWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_exFWX3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -835,14 +835,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@executions.0" width="20" height="50"> <label id="//@ownedInteractions.7/@executions.0"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f0DVSGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_exEvSnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -855,9 +855,9 @@ <label id="//@ownedInteractions.7/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0DVSWyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exEvS3KGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f0DVSmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exEvTHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -884,14 +884,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@executions.1" width="20" height="50"> <label id="//@ownedInteractions.7/@executions.1"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f0DVS2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_exEvTXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -903,7 +903,7 @@ <location x="-5" y="200"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@interactionUses.0" width="270" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f0D8VGyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_exFWVnKGEeu0Jfg10F8cWA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -921,9 +921,9 @@ <label id="//@ownedInteractions.7/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0D8bGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exFWbnKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f0D8bWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exFWb3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -950,9 +950,9 @@ <label id="//@ownedInteractions.7/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0D8cGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exF9YHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f0D8cWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exF9YXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -979,9 +979,9 @@ <label id="//@ownedInteractions.7/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0D8bmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exFWcHKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f0D8b2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exFWcXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1008,9 +1008,9 @@ <label id="//@ownedInteractions.7/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0D8aGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exFWanKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f0D8aWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exFWa3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1037,9 +1037,9 @@ <label id="//@ownedInteractions.7/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0D8ZmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exFWaHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f0D8Z2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exFWaXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1066,7 +1066,7 @@ <label id="//@ownedInteractions.7/@messages.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f0CuMGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_exEIM3KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -1086,9 +1086,9 @@ <label id="//@ownedInteractions.7/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0D8amyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exFWbHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f0D8a2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exFWbXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1113,14 +1113,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.7/@participants.0"> - <location x="-1"/> + <location x="-44"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f0DVZGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_exFWUHKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1132,7 +1132,10 @@ <location y="690"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f0DVT2yeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.7/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_exEvUXKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1140,7 +1143,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1172,13 +1175,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="10" height="690"> - <siriusStyle xsi:type="diagram:Square" uid="_f0DVWmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.7/@participants.0"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_exEvXHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1201,9 +1207,9 @@ <label id="//@ownedInteractions.7/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0DVXGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exEvXnKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f0DVXWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exEvX3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1230,9 +1236,9 @@ <label id="//@ownedInteractions.7/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0DVXmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exEvYHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f0DVX2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exEvYXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1259,9 +1265,9 @@ <label id="//@ownedInteractions.7/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0DVYGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exEvYnKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f0DVYWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exEvY3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1288,9 +1294,9 @@ <label id="//@ownedInteractions.7/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0DVYmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exEvZHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f0DVY2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exEvZXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1317,14 +1323,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="50" height="50"> <label id="//@ownedInteractions.7/@participants.1"> - <location x="-1"/> + <location x="-4"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f0DVTmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_exEvUHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1336,7 +1342,10 @@ <location x="-20" y="560"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f0CuP2yeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.7/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_exEIQnKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1344,7 +1353,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1355,7 +1364,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1388,7 +1397,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1420,13 +1429,16 @@ <location x="200" y="105"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="10" height="560"> - <siriusStyle xsi:type="diagram:Square" uid="_f0CuSmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.7/@participants.1"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_exEvQHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1437,7 +1449,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1470,7 +1482,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1493,9 +1505,9 @@ <label id="//@ownedInteractions.7/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f0DVRmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_exEvSHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f0DVR2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_exEvSXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1524,7 +1536,7 @@ <label id="//@ownedInteractions.7/@states.0"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_f0DVTGyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_exEvTnKGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1544,7 +1556,7 @@ <label id="//@ownedInteractions.7/@states.1"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_f0DVTWyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_exEvT3KGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@conditionnalStyles.0/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram__with__notes___to___storedFormat-Basic__Observation__Diagram__with__notes__full__New__notes.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram__with__notes___to___storedFormat-Basic__Observation__Diagram__with__notes__full__New__notes.xmi index fc45fba7aa..24624d67c0 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram__with__notes___to___storedFormat-Basic__Observation__Diagram__with__notes__full__New__notes.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Basic__Observation__Diagram__with__notes___to___storedFormat-Basic__Observation__Diagram__with__notes__full__New__notes.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0" width="270" height="150"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gHqN3myeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fIr-B3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -34,7 +34,7 @@ <location x="50" y="515"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0/@ownedOperands.0" width="270" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gHqN4WyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fIr-CnKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -49,7 +49,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0/@ownedOperands.1" width="270" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gHqN4myeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fIr-C3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -67,9 +67,9 @@ <label id="//@ownedInteractions.7/@constraints.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHq06GyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIslEnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHq06WyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIslE3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -100,9 +100,9 @@ <label id="//@ownedInteractions.7/@constraints.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHq02myeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIr-HHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHq022yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIr-HXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -133,9 +133,9 @@ <label id="//@ownedInteractions.7/@constraints.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHq02GyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIr-GnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHq02WyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIr-G3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -166,9 +166,9 @@ <label id="//@ownedInteractions.7/@constraints.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHq01myeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIr-GHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHq012yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIr-GXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -199,9 +199,9 @@ <label id="//@ownedInteractions.7/@constraints.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHq01GyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIr-FnKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHq01WyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIr-F3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -232,7 +232,7 @@ <label id="//@ownedInteractions.7/@ends.0"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_oWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv4HKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -252,7 +252,7 @@ <label id="//@ownedInteractions.7/@ends.1"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_o2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv4nKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -272,7 +272,7 @@ <label id="//@ownedInteractions.7/@ends.10"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_tGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv83KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -292,7 +292,7 @@ <label id="//@ownedInteractions.7/@ends.11"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_tWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv9HKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -312,7 +312,7 @@ <label id="//@ownedInteractions.7/@ends.12"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_tmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv9XKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -332,7 +332,7 @@ <label id="//@ownedInteractions.7/@ends.13"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_t2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv9nKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -352,7 +352,7 @@ <label id="//@ownedInteractions.7/@ends.14"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_oGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqI0HKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -372,7 +372,7 @@ <label id="//@ownedInteractions.7/@ends.15"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_omyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv4XKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -392,7 +392,7 @@ <label id="//@ownedInteractions.7/@ends.16"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_pGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv43KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -412,7 +412,7 @@ <label id="//@ownedInteractions.7/@ends.17"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_qGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv53KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -432,7 +432,7 @@ <label id="//@ownedInteractions.7/@ends.18"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_q2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv6nKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -452,7 +452,7 @@ <label id="//@ownedInteractions.7/@ends.19"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_rWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv7HKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -470,9 +470,9 @@ <label id="//@ownedInteractions.7/@constraints.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHo_rmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIqv7XKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHo_r2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIqv7nKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -505,7 +505,7 @@ <label id="//@ownedInteractions.7/@ends.2"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_pWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv5HKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -523,9 +523,9 @@ <label id="//@ownedInteractions.7/@constraints.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHo_pmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIqv5XKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHo_p2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIqv5nKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -558,7 +558,7 @@ <label id="//@ownedInteractions.7/@ends.20"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHqN5GyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIr-DXKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -578,7 +578,7 @@ <label id="//@ownedInteractions.7/@ends.21"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHqN5WyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIr-DnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -598,7 +598,7 @@ <label id="//@ownedInteractions.7/@ends.3"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_qmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv6XKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -618,7 +618,7 @@ <label id="//@ownedInteractions.7/@ends.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_rGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv63KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -638,7 +638,7 @@ <label id="//@ownedInteractions.7/@ends.5"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_sGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv73KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -658,7 +658,7 @@ <label id="//@ownedInteractions.7/@ends.6"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHo_sWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIqv8HKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -676,9 +676,9 @@ <label id="//@ownedInteractions.7/@constraints.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHo_smyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIqv8XKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHo_s2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIqv8nKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -711,7 +711,7 @@ <label id="//@ownedInteractions.7/@ends.7"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHqN5myeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIr-D3KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -729,9 +729,9 @@ <label id="//@ownedInteractions.7/@constraints.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHqN52yeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIr-EHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHqN6GyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIr-EXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -764,7 +764,7 @@ <label id="//@ownedInteractions.7/@ends.8"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHq00GyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIr-EnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -784,7 +784,7 @@ <label id="//@ownedInteractions.7/@ends.9"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHq00WyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIr-E3KGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -802,9 +802,9 @@ <label id="//@ownedInteractions.7/@constraints.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gHq00myeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_fIr-FHKGEeu0Jfg10F8cWA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gHq002yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_fIr-FXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -835,14 +835,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@executions.0" width="20" height="50"> <label id="//@ownedInteractions.7/@executions.0"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gHqNwWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_fIrXAHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -855,9 +855,9 @@ <label id="//@ownedInteractions.7/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHqNwmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIrXAXKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_gHqNw2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIrXAnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -884,14 +884,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@executions.1" width="20" height="50"> <label id="//@ownedInteractions.7/@executions.1"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gHqNxGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_fIrXA3KGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -903,7 +903,7 @@ <location x="-5" y="200"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@interactionUses.0" width="270" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gHqN42yeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_fIr-DHKGEeu0Jfg10F8cWA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -921,9 +921,9 @@ <label id="//@ownedInteractions.7/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHq04myeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-JHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gHq042yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-JXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -950,9 +950,9 @@ <label id="//@ownedInteractions.7/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHq05myeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIslEHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gHq052yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIslEXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -979,9 +979,9 @@ <label id="//@ownedInteractions.7/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHq05GyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-JnKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_gHq05WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-J3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1008,9 +1008,9 @@ <label id="//@ownedInteractions.7/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHq03myeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-IHKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gHq032yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-IXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1037,9 +1037,9 @@ <label id="//@ownedInteractions.7/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHq03GyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-HnKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gHq03WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-H3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1066,7 +1066,7 @@ <label id="//@ownedInteractions.7/@messages.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gHo_qWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_fIqv6HKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -1086,9 +1086,9 @@ <label id="//@ownedInteractions.7/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHq04GyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-InKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gHq04WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-I3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1113,14 +1113,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.7/@participants.0"> - <location x="-1"/> + <location x="-44"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gHqN3WyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_fIr-BnKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1132,7 +1132,10 @@ <location y="690"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gHqNyGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.7/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_fIrXB3KGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1140,7 +1143,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1172,13 +1175,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="10" height="690"> - <siriusStyle xsi:type="diagram:Square" uid="_gHqN02yeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.7/@participants.0"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_fIrXEnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1201,9 +1207,9 @@ <label id="//@ownedInteractions.7/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHqN1WyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIrXFHKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gHqN1myeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIrXFXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1230,9 +1236,9 @@ <label id="//@ownedInteractions.7/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHqN12yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-AHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gHqN2GyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-AXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1259,9 +1265,9 @@ <label id="//@ownedInteractions.7/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHqN2WyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-AnKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gHqN2myeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-A3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1288,9 +1294,9 @@ <label id="//@ownedInteractions.7/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHqN22yeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIr-BHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gHqN3GyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIr-BXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1317,14 +1323,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="50" height="50"> <label id="//@ownedInteractions.7/@participants.1"> - <location x="-1"/> + <location x="-4"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gHqNx2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_fIrXBnKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1336,7 +1342,10 @@ <location x="-20" y="560"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gHo_uGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.7/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_fIqv93KGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1344,7 +1353,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1355,7 +1364,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1388,7 +1397,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1420,13 +1429,16 @@ <location x="200" y="105"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="10" height="560"> - <siriusStyle xsi:type="diagram:Square" uid="_gHpmumyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.7/@participants.1"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_fIrW9nKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1437,7 +1449,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1470,7 +1482,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1493,9 +1505,9 @@ <label id="//@ownedInteractions.7/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gHpmwmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_fIrW_nKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gHqNwGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_fIrW_3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1524,7 +1536,7 @@ <label id="//@ownedInteractions.7/@states.0"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_gHqNxWyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_fIrXBHKGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1544,7 +1556,7 @@ <label id="//@ownedInteractions.7/@states.1"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_gHqNxmyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_fIrXBXKGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@conditionnalStyles.0/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex___to___storedFormat-Complex__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex___to___storedFormat-Complex__full__New.xmi index bbb2c50cfc..512fe9c0b9 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex___to___storedFormat-Complex__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex___to___storedFormat-Complex__full__New.xmi @@ -1,14 +1,17 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.0" width="20" height="310"> - <siriusStyle xsi:type="diagram:Square" uid="_f5yJ3myeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.2/@executions.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e45OgnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -18,7 +21,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -28,7 +31,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="270"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -41,9 +44,9 @@ <label id="//@ownedInteractions.2/@messages.10" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yJ52yeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e45Oi3KGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f5yJ6GyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e45OjHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -68,13 +71,16 @@ <location x="-5" y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.1" width="20" height="270"> - <siriusStyle xsi:type="diagram:Square" uid="_f5yJ6WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <label id="//@ownedInteractions.2/@executions.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e45OjXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -84,7 +90,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -97,9 +103,9 @@ <label id="//@ownedInteractions.2/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yJ72yeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e45Ok3KGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f5yJ8GyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e45OlHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -125,14 +131,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.2" width="20" height="230"> <label id="//@ownedInteractions.2/@executions.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f5yJ8WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> + <siriusStyle xsi:type="diagram:Square" uid="_e45OlXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -145,9 +151,9 @@ <label id="//@ownedInteractions.2/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yJ8myeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e45OlnKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f5yJ82yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e45Ol3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -174,9 +180,9 @@ <label id="//@ownedInteractions.2/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yJ9GyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e45OmHKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f5yJ9WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e45OmXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -202,14 +208,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.3" width="20" height="190"> <label id="//@ownedInteractions.2/@executions.3"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f5z_CGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e46cpXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -222,9 +228,9 @@ <label id="//@ownedInteractions.2/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5z_CWyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e46cpnKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f5z_CmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e46cp3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -251,9 +257,9 @@ <label id="//@ownedInteractions.2/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5z_C2yeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e46cqHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f5z_DGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e46cqXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -280,9 +286,9 @@ <label id="//@ownedInteractions.2/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5z_DWyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e46cqnKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f5z_DmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e46cq3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -309,14 +315,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.4" width="20" height="50"> <label id="//@ownedInteractions.2/@executions.4"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f5xiymyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e44ncXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -329,9 +335,9 @@ <label id="//@ownedInteractions.2/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5xiy2yeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e44ncnKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f5xizGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e44nc3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -358,14 +364,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.5" width="20" height="50"> <label id="//@ownedInteractions.2/@executions.5"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f50mEGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e46crHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -378,9 +384,9 @@ <label id="//@ownedInteractions.2/@messages.12" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f50mEWyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e46crXKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f50mEmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e46crnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -408,13 +414,16 @@ <location x="-5" y="370"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.6" width="20" height="150"> - <siriusStyle xsi:type="diagram:Square" uid="_f51NLWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.2/@executions.6"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e47DvnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -424,7 +433,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="30" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -437,9 +446,9 @@ <label id="//@ownedInteractions.2/@messages.14" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f51NM2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47DxHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f51NNGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47DxXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -468,9 +477,9 @@ <label id="//@ownedInteractions.2/@messages.18" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f51NNWyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47DxnKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f51NNmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47Dx3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -496,14 +505,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.7" width="20" height="90"> <label id="//@ownedInteractions.2/@executions.7"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f51NN2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_e47DyHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -516,9 +525,9 @@ <label id="//@ownedInteractions.2/@messages.15" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f51NOGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47DyXKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f51NOWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47DynKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -545,9 +554,9 @@ <label id="//@ownedInteractions.2/@messages.17" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f51NOmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47Dy3KGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f51NO2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47DzHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -576,14 +585,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.8" width="20" height="50"> <label id="//@ownedInteractions.2/@executions.8"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f5yw8WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e451mXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -596,9 +605,9 @@ <label id="//@ownedInteractions.2/@messages.16" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yw8myeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e451mnKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f5yw82yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e451m3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -627,9 +636,9 @@ <label id="//@ownedInteractions.2/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bXGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q2nKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bXWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q23KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -655,9 +664,9 @@ <label id="//@ownedInteractions.2/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bYGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q3nKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bYWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q33KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -683,9 +692,9 @@ <label id="//@ownedInteractions.2/@messages.10" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bXmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q3HKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bX2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q3XKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -711,9 +720,9 @@ <label id="//@ownedInteractions.2/@messages.11" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bWmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q2HKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bW2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q2XKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -741,9 +750,9 @@ <label id="//@ownedInteractions.2/@messages.12" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bVmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q1HKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bV2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q1XKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -772,9 +781,9 @@ <label id="//@ownedInteractions.2/@messages.13" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bRmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qxHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bR2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qxXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -800,9 +809,9 @@ <label id="//@ownedInteractions.2/@messages.14" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bRGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qwnKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bRWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qw3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -831,9 +840,9 @@ <label id="//@ownedInteractions.2/@messages.15" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bQmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qwHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bQ2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qwXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -860,9 +869,9 @@ <label id="//@ownedInteractions.2/@messages.16" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bQGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47DznKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bQWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47Dz3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -889,9 +898,9 @@ <label id="//@ownedInteractions.2/@messages.17" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bSmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qyHKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bS2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qyXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -920,9 +929,9 @@ <label id="//@ownedInteractions.2/@messages.18" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bSGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qxnKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bSWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qx3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -948,9 +957,9 @@ <label id="//@ownedInteractions.2/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bVGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q0nKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bVWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q03KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -976,9 +985,9 @@ <label id="//@ownedInteractions.2/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bWGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q1nKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bWWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q13KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1005,9 +1014,9 @@ <label id="//@ownedInteractions.2/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bUGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qznKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f52bUWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qz3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1034,9 +1043,9 @@ <label id="//@ownedInteractions.2/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bUmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q0HKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f52bU2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q0XKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1063,9 +1072,9 @@ <label id="//@ownedInteractions.2/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bTGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qynKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bTWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qy3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1092,9 +1101,9 @@ <label id="//@ownedInteractions.2/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bTmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47qzHKGEeu0Jfg10F8cWA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_f52bT2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47qzXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1121,9 +1130,9 @@ <label id="//@ownedInteractions.2/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bYmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q4HKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bY2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q4XKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1149,9 +1158,9 @@ <label id="//@ownedInteractions.2/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f52bZGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47q4nKGEeu0Jfg10F8cWA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_f52bZWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47q43KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1175,14 +1184,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f5yw9GyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_e451nHKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1194,7 +1203,10 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f5yJ92yeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e45Om3KGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1202,7 +1214,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1213,7 +1225,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1223,7 +1235,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1245,13 +1257,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.0" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_f5yw6GyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e451kHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1262,7 +1277,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1272,7 +1287,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1285,9 +1300,9 @@ <label id="//@ownedInteractions.2/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yw7WyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e451lXKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f5yw7myeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e451lnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1313,9 +1328,9 @@ <label id="//@ownedInteractions.2/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yw72yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e451l3KGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f5yw8GyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e451mHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1341,14 +1356,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f5yJ9myeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_e45OmnKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1360,7 +1375,10 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f5xizmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e44ndXKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1370,7 +1388,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1380,7 +1398,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1390,7 +1408,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="270"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1401,7 +1419,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1411,7 +1429,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1433,7 +1451,10 @@ <location x="220" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.1" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_f5xi3myeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e44nhXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1441,7 +1462,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1451,7 +1472,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1461,7 +1482,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="270"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1472,7 +1493,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1482,7 +1503,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1495,9 +1516,9 @@ <label id="//@ownedInteractions.2/@messages.13" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5yJ3GyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e45OgHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f5yJ3WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e45OgXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1523,14 +1544,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.2" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f510MGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_e47DzXKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1542,7 +1563,10 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.2" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f50mFGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e46csHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1551,7 +1575,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1561,7 +1585,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="30" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1572,7 +1596,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1582,7 +1606,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1604,14 +1628,17 @@ <location x="390" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.2" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_f50mI2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e47DsHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1621,7 +1648,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="30" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1632,7 +1659,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1642,7 +1669,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1655,9 +1682,9 @@ <label id="//@ownedInteractions.2/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f51NK2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e47DvHKGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f51NLGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e47DvXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1683,14 +1710,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.3" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.3"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f50mE2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_e46cr3KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1702,13 +1729,16 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.3" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_f5zX_myeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e451rHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1719,7 +1749,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1730,7 +1760,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1740,7 +1770,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1753,9 +1783,9 @@ <label id="//@ownedInteractions.2/@messages.11" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f5z_BmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e46co3KGEeu0Jfg10F8cWA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_f5z_B2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e46cpHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1782,7 +1812,10 @@ <location x="55" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.3" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f5yw9WyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e451nXKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1790,7 +1823,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1801,7 +1834,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1812,7 +1845,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1822,7 +1855,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1845,14 +1878,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.4" width="50" height="50"> <label id="//@ownedInteractions.2/@participants.4"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_f5xizWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_e44ndHKGEeu0Jfg10F8cWA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1864,13 +1897,16 @@ <location x="-20" y="100"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.4" width="10" height="100"> - <siriusStyle xsi:type="diagram:Square" uid="_f5xixWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.4"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e44AZnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1881,7 +1917,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1891,7 +1927,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="100" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1903,7 +1939,10 @@ <location x="55" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.4" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f5w7sGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.4"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e44AYHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1911,7 +1950,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1922,7 +1961,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1932,7 +1971,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="100" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__full__New.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__full__New.xmi index cfc4c69335..6118e86eb8 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__full__New.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__full__New.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.0" width="140" height="280"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_Z_WyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUinKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -34,7 +34,7 @@ <location x="50" y="240"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.0/@ownedOperands.0" width="140" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aAGyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUjXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -49,7 +49,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.0/@ownedOperands.1" width="140" height="160"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aAWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUjnKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -64,7 +64,7 @@ <location y="120"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.1" width="330" height="590"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aA2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUkHKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -88,7 +88,7 @@ <location x="50" y="560"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.1/@ownedOperands.0" width="330" height="560"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aBWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUknKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -103,7 +103,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.2" width="120" height="120"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aBmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUk3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -127,7 +127,7 @@ <location x="60" y="380"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.2/@ownedOperands.0" width="120" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aCGyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUlXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -142,7 +142,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.3" width="310" height="120"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aCWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUlnKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -166,7 +166,7 @@ <location x="60" y="770"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.3/@ownedOperands.0" width="310" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f_ABAGyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUmHKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -181,7 +181,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.4" width="310" height="200"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f_ABAWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUmXKGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -205,7 +205,7 @@ <location x="60" y="930"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.4/@ownedOperands.0" width="310" height="170"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f_ABA2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUm3KGEeu0Jfg10F8cWA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -221,14 +221,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.0" width="20" height="90"> <label id="//@ownedInteractions.5/@executions.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f-_Z8GyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e-rtg3KGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -241,14 +241,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.1" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f-_Z8WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e-rthHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -261,14 +261,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.2" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f_AoHGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e-s7rHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -280,13 +280,16 @@ <location x="-5" y="330"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.3" width="20" height="630"> - <siriusStyle xsi:type="diagram:Square" uid="_f_AoHWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.5/@executions.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-s7rXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -297,7 +300,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -307,7 +310,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="460" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -320,9 +323,9 @@ <label id="//@ownedInteractions.5/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_AoIGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-s7sHKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_AoIWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-s7sXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -349,9 +352,9 @@ <label id="//@ownedInteractions.5/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_AoImyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-s7snKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_AoI2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-s7s3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -378,14 +381,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.4" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.4"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f_AoJGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_e-s7tHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -397,7 +400,10 @@ <location x="15" y="70"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.5" width="20" height="160"> - <siriusStyle xsi:type="diagram:Square" uid="_f-_Z8myeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.5/@executions.5"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-rthXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -414,7 +420,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -424,7 +430,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="70" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -436,7 +442,10 @@ <location x="-5" y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.6" width="20" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f-_Z9WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <label id="//@ownedInteractions.5/@executions.6"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-sUgnKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -452,7 +461,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -465,14 +474,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.7" width="20" height="110"> <label id="//@ownedInteractions.5/@executions.7"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f-_Z-GyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_e-sUhXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -485,14 +494,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.8" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.8"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_f_AoJWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_e-tioHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -504,7 +513,10 @@ <location x="15" y="460"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.9" width="20" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f_AoJmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.5/@executions.9"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-tioXKGEeu0Jfg10F8cWA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -520,7 +532,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -532,7 +544,7 @@ <location x="-5" y="1115"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@interactionUses.0" width="310" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_aAmyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUj3KGEeu0Jfg10F8cWA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -547,7 +559,7 @@ <location x="60" y="150"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@interactionUses.1" width="310" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_Z_GyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUiXKGEeu0Jfg10F8cWA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -562,7 +574,7 @@ <location x="60" y="680"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@interactionUses.2" width="120" height="100"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_f-_Z-2yeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_e-sUiHKGEeu0Jfg10F8cWA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -580,9 +592,9 @@ <label id="//@ownedInteractions.5/@messages.0" width="-1" height="-1"> <location x="-1" y="-61"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_BPJGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-tiq3KGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_BPJWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-tirHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -611,9 +623,9 @@ <label id="//@ownedInteractions.5/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_BPImyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-tiqXKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_BPI2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-tiqnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -640,9 +652,9 @@ <label id="//@ownedInteractions.5/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_BPIGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-tip3KGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_BPIWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-tiqHKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -669,9 +681,9 @@ <label id="//@ownedInteractions.5/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_AoKmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-tipXKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_AoK2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-tipnKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -696,14 +708,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.5/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f_AoKWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_e-tipHKGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -715,13 +727,16 @@ <location y="1302"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.0" width="10" height="1302"> - <siriusStyle xsi:type="diagram:Square" uid="_f_ABFWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.5/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-s7nHKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -731,12 +746,12 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -747,7 +762,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -757,7 +772,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="460" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -779,7 +794,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -790,7 +805,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -810,9 +825,9 @@ <label id="//@ownedInteractions.5/@messages.0" width="-1" height="-1"> <location x="-1" y="-61"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_AoGGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-s7qHKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_AoGWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-s7qXKGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -841,9 +856,9 @@ <label id="//@ownedInteractions.5/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_f_AoGmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_e-s7qnKGEeu0Jfg10F8cWA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_f_AoG2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_e-s7q3KGEeu0Jfg10F8cWA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -869,7 +884,10 @@ <location x="55" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f_ABBGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.5/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-sUnHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -877,7 +895,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -887,12 +905,12 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -903,7 +921,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -913,7 +931,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="460" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -935,7 +953,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -946,7 +964,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -976,14 +994,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.5/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_f-_Z-myeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_e-sUh3KGEeu0Jfg10F8cWA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -995,7 +1013,10 @@ <location y="1302"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_f--L0GyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.5/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-rtcHKGEeu0Jfg10F8cWA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1003,7 +1024,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1013,11 +1034,11 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1028,7 +1049,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1051,7 +1072,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1061,7 +1082,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="70" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1072,7 +1093,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1112,13 +1133,16 @@ <location x="250" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.1" width="10" height="1302"> - <siriusStyle xsi:type="diagram:Square" uid="_f--y6GyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.5/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_e-rtenKGEeu0Jfg10F8cWA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1128,11 +1152,11 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1143,7 +1167,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1166,7 +1190,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1176,7 +1200,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="70" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1187,7 +1211,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1220,7 +1244,7 @@ <label id="//@ownedInteractions.5/@states.0"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_f-_Z92yeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_e-sUhHKGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1240,7 +1264,7 @@ <label id="//@ownedInteractions.5/@states.1"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_f_AoKGyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_e-tio3KGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1260,7 +1284,7 @@ <label id="//@ownedInteractions.5/@states.2"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_f-_Z-WyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_e-sUhnKGEeu0Jfg10F8cWA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__Raw__full.xmi index 3a8f8b2196..2bfc9573bd 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Combined__Fragment__Diagram___to___storedFormat-Basic__Combined__Fragment__Diagram__Raw__full.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.0" width="120" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gKjJsGyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_QhRMMHKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -25,7 +25,7 @@ <location x="50" y="130"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.0/@ownedOperands.0" width="120" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gKjJsmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_QhRzQXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -40,7 +40,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.1" width="120" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gKjJs2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_QhRzQnKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -64,7 +64,7 @@ <location x="200" y="240"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@combinedFragments.1/@ownedOperands.0" width="120" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gKjJtWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_QhSaUXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -80,14 +80,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.4/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gKjJu2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_QhSaV3KHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -99,7 +99,10 @@ <location y="395"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gKjJtmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.4/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QhSaUnKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -107,7 +110,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -117,7 +120,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -139,13 +142,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.0" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_gKjJuWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.4/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QhSaVXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -155,7 +161,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -168,14 +174,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.4/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gKjww2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_QhTBY3KHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -187,7 +193,10 @@ <location y="395"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gKjJvGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.4/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QhSaWHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -195,7 +204,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -205,7 +214,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -227,13 +236,16 @@ <location x="200" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.4/@participants.1" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_gKjwwWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.4/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QhTBYXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -243,7 +255,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__Raw__full.xmi index 446d4de45d..c57ddd6ef9 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Executions__Diagram___to___storedFormat-Basic__Executions__Diagram__Raw__full.xmi @@ -2,14 +2,14 @@ <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.0" width="20" height="40"> <label id="//@ownedInteractions.1/@executions.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gNYbTGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_QpD2QHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -21,7 +21,10 @@ <location x="-5" y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.1" width="20" height="340"> - <siriusStyle xsi:type="diagram:Square" uid="_gNZpZGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.1/@executions.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpFrc3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -30,7 +33,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -40,7 +43,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -50,7 +53,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -60,7 +63,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -71,7 +74,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -81,7 +84,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-12" y="250" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -94,14 +97,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.10" width="20" height="40"> <label id="//@ownedInteractions.1/@executions.10"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gNZpdWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_QpGSinKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -113,7 +116,10 @@ <location x="-5" y="450"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.2" width="20" height="170"> - <siriusStyle xsi:type="diagram:Square" uid="_gNZpamyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <label id="//@ownedInteractions.1/@executions.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpFreXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -121,7 +127,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -131,7 +137,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -141,7 +147,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -151,7 +157,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -163,14 +169,17 @@ <location x="15" y="40"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.3" width="20" height="130"> - <siriusStyle xsi:type="diagram:Square" uid="_gNZpbmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> + <label id="//@ownedInteractions.1/@executions.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpGSg3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -180,7 +189,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -190,7 +199,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -202,13 +211,16 @@ <location x="15" y="20"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.4" width="20" height="90"> - <siriusStyle xsi:type="diagram:Square" uid="_gNZpcWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="145,210,211"> + <label id="//@ownedInteractions.1/@executions.4"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpGShnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="145,210,211"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -218,7 +230,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -231,14 +243,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.5" width="20" height="50"> <label id="//@ownedInteractions.1/@executions.5"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gNZpc2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="128,201,205"> + <siriusStyle xsi:type="diagram:Square" uid="_QpGSiHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="128,201,205"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -251,14 +263,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.6" width="20" height="90"> <label id="//@ownedInteractions.1/@executions.6"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gNYbTWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_QpD2QXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -271,14 +283,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.7" width="20" height="50"> <label id="//@ownedInteractions.1/@executions.7"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gNZpdGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_QpGSiXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -290,13 +302,16 @@ <location x="15" y="250"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.8" width="20" height="100"> - <siriusStyle xsi:type="diagram:Square" uid="_gNYbTmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.1/@executions.8"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpD2QnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -306,7 +321,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="40"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -319,14 +334,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@executions.9" width="20" height="40"> <label id="//@ownedInteractions.1/@executions.9"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gNYbUGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_QpD2RHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -339,14 +354,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.1/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gNYbUWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_QpD2RXKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -358,7 +373,10 @@ <location y="704"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gNX0MGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.1/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpCoIHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -366,7 +384,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -377,7 +395,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -389,7 +407,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -399,7 +417,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="40"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -410,7 +428,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -420,7 +438,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="696" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -442,13 +460,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.0" width="10" height="696"> - <siriusStyle xsi:type="diagram:Square" uid="_gNYbRmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.1/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpDPNnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -459,7 +480,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -471,7 +492,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -481,7 +502,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="40"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -492,7 +513,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -502,7 +523,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="696" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -515,14 +536,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.1/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gNZpeGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_QpGSjXKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -534,7 +555,10 @@ <location y="704"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gNYbUmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.1/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpD2RnKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -546,7 +570,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -556,7 +580,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -566,7 +590,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -576,7 +600,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -587,7 +611,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -597,7 +621,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-12" y="250" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -608,7 +632,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -619,7 +643,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -651,7 +675,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-53" y="587" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -673,7 +697,10 @@ <location x="200" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.1/@participants.1" width="10" height="696"> - <siriusStyle xsi:type="diagram:Square" uid="_gNZCW2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.1/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QpFEYHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -683,7 +710,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -693,7 +720,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -703,7 +730,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -713,7 +740,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="130"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -724,7 +751,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -734,7 +761,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-12" y="250" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -745,7 +772,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -756,7 +783,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -788,7 +815,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="-53" y="587" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -803,7 +830,7 @@ <label id="//@ownedInteractions.1/@states.0"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_gNZpdmyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_QpGSi3KHEeuS0J0wgZOrhA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -823,7 +850,7 @@ <label id="//@ownedInteractions.1/@states.1"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_gNZpd2yeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_QpGSjHKHEeuS0J0wgZOrhA" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@conditionnalStyles.0/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__Raw__full.xmi index 32f7f9855e..3ae94ee4ba 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Interaction__Use__Diagram___to___storedFormat-Basic__Interaction__Use__Diagram__Raw__full.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.3/@interactionUses.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gPy2HGyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_QtN9gnKHEeuS0J0wgZOrhA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -16,7 +16,7 @@ <location x="50" y="292"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@interactionUses.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gPy2G2yeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_QtN9gXKHEeuS0J0wgZOrhA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -32,14 +32,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.3/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gPy2GmyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_QtN9gHKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -51,7 +51,10 @@ <location y="395"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gPy2FWyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.3/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QtNWc3KHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -59,7 +62,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -69,7 +72,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -91,13 +94,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.0" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_gPy2GGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.3/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QtNWdnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -107,7 +113,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -120,14 +126,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.3/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gPy2FGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_QtNWcnKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -139,7 +145,10 @@ <location y="395"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gPyPAGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.3/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QtMvYHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -147,7 +156,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -157,7 +166,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -179,13 +188,16 @@ <location x="200" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.3/@participants.1" width="10" height="400"> - <siriusStyle xsi:type="diagram:Square" uid="_gPy2EmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.3/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QtNWcHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -195,7 +207,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="400" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__Raw__full.xmi index 208574bc3f..068bab5592 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Lost__Message__End__Diagram___to___storedFormat-Basic__Lost__Message__End__Diagram__Raw__full.xmi @@ -2,14 +2,14 @@ <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.6/@executions.0" width="20" height="90"> <label id="//@ownedInteractions.6/@executions.0"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gTRA42yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_QzuOIHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -22,9 +22,9 @@ <label id="//@ownedInteractions.6/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRA5GyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzuOIXKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_gTRA5WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzuOInKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -51,14 +51,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@executions.1" width="20" height="50"> <label id="//@ownedInteractions.6/@executions.1"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gTRA5myeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_QzuOI3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -73,9 +73,9 @@ <label id="//@ownedInteractions.6/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn8GyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzvcQnKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gTRn8WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzvcQ3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -102,7 +102,7 @@ <label id="//@ownedInteractions.6/@messages.0"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTRA6WyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzuOJnKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -120,9 +120,9 @@ <label id="//@ownedInteractions.6/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRA6myeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzuOJ3KHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gTRA62yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzuOKHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -151,9 +151,9 @@ <label id="//@ownedInteractions.6/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn8myeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzvcRHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gTRn82yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzvcRXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -180,7 +180,7 @@ <label id="//@ownedInteractions.6/@messages.1"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTRA7GyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzuOKXKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -200,9 +200,9 @@ <label id="//@ownedInteractions.6/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn7GyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Qzu1PHKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTRn7WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Qzu1PXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -229,7 +229,7 @@ <label id="//@ownedInteractions.6/@messages.2"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTRA1WyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QztAFHKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -249,9 +249,9 @@ <label id="//@ownedInteractions.6/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn7myeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzvcQHKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_gTRn72yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzvcQXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -278,7 +278,7 @@ <label id="//@ownedInteractions.6/@messages.3"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTRA6GyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzuOJXKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -298,9 +298,9 @@ <label id="//@ownedInteractions.6/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn5GyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Qzu1NHKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gTRn5WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Qzu1NXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -327,7 +327,7 @@ <label id="//@ownedInteractions.6/@messages.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTQZxmyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzsY9nKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -345,9 +345,9 @@ <label id="//@ownedInteractions.6/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTQZx2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzsY93KHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gTQZyGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzsY-HKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -376,9 +376,9 @@ <label id="//@ownedInteractions.6/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn5myeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Qzu1NnKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gTRn52yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Qzu1N3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -405,7 +405,7 @@ <label id="//@ownedInteractions.6/@messages.5"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTQZyWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzsY-XKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -423,9 +423,9 @@ <label id="//@ownedInteractions.6/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTQZymyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzsY-nKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gTQZy2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzsY-3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -454,9 +454,9 @@ <label id="//@ownedInteractions.6/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn4GyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Qzu1MHKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTRn4WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Qzu1MXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -483,7 +483,7 @@ <label id="//@ownedInteractions.6/@messages.6"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTQZwGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzsY8HKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -501,9 +501,9 @@ <label id="//@ownedInteractions.6/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTQZwWyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzsY8XKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTQZwmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzsY8nKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -532,9 +532,9 @@ <label id="//@ownedInteractions.6/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn4myeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Qzu1MnKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTRn42yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Qzu1M3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -561,7 +561,7 @@ <label id="//@ownedInteractions.6/@messages.7"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTQZw2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzsY83KHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -579,9 +579,9 @@ <label id="//@ownedInteractions.6/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTQZxGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QzsY9HKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTQZxWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QzsY9XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -610,9 +610,9 @@ <label id="//@ownedInteractions.6/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn6GyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Qzu1OHKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTRn6WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Qzu1OXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -639,7 +639,7 @@ <label id="//@ownedInteractions.6/@messages.8"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTQZzGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzsY_HKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -659,9 +659,9 @@ <label id="//@ownedInteractions.6/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRn6myeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Qzu1OnKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gTRn62yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Qzu1O3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -688,7 +688,7 @@ <label id="//@ownedInteractions.6/@messages.9"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTQZzWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_QzsY_XKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -706,14 +706,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.6/@participants.0"> - <location x="-1"/> + <location x="-44"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gTRA1GyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_QztAE3KHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -725,7 +725,10 @@ <location y="450"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gTQZzmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.6/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QzsY_nKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -733,7 +736,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -765,13 +768,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.0" width="10" height="450"> - <siriusStyle xsi:type="diagram:Square" uid="_gTQZ2WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.6/@participants.0"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QztACXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -794,9 +800,9 @@ <label id="//@ownedInteractions.6/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTQZ22yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QztAC3KHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gTQZ3GyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QztADHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -823,9 +829,9 @@ <label id="//@ownedInteractions.6/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTQZ3WyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QztADXKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gTQZ3myeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QztADnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -852,9 +858,9 @@ <label id="//@ownedInteractions.6/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRA0GyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QztAD3KHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTRA0WyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QztAEHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -881,9 +887,9 @@ <label id="//@ownedInteractions.6/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gTRA0myeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_QztAEXKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gTRA02yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_QztAEnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -910,14 +916,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.1" width="50" height="50"> <label id="//@ownedInteractions.6/@participants.1"> - <location x="-1"/> + <location x="-4"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gTRA52yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_QzuOJHKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -929,7 +935,10 @@ <location x="-20" y="315"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gTRA1myeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.6/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QztnEHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -937,7 +946,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -948,7 +957,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -959,7 +968,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -991,13 +1000,16 @@ <location x="315" y="110"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.6/@participants.1" width="10" height="315"> - <siriusStyle xsi:type="diagram:Square" uid="_gTRA3WyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.6/@participants.1"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_QztnF3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1008,7 +1020,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1019,7 +1031,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__Raw__full.xmi index 7becf8840e..8fd61e6dd1 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Messages__Diagram___to___storedFormat-Basic__Messages__Diagram__Raw__full.xmi @@ -4,9 +4,9 @@ <label id="//@ownedInteractions.0/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWY2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBWXKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWtWZGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBWnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -31,9 +31,9 @@ <label id="//@ownedInteractions.0/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWZWyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBW3KHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWtWZmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBXHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -58,9 +58,9 @@ <label id="//@ownedInteractions.0/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWZ2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBXXKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWtWaGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBXnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -88,9 +88,9 @@ <label id="//@ownedInteractions.0/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWaWyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBX3KHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gWtWamyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBYHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -116,9 +116,9 @@ <label id="//@ownedInteractions.0/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWa2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBYXKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWtWbGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBYnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -146,9 +146,9 @@ <label id="//@ownedInteractions.0/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWbWyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBY3KHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gWtWbmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBZHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -174,9 +174,9 @@ <label id="//@ownedInteractions.0/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWb2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBZXKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWtWcGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBZnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -199,14 +199,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.0/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gWsvVGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_Q4TzPnKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -218,7 +218,10 @@ <location y="375"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsISmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4TzNXKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -226,7 +229,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -236,7 +239,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -258,13 +261,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.0" width="10" height="375"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsvUGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4TzOnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -274,7 +280,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -287,9 +293,9 @@ <label id="//@ownedInteractions.0/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWsvUmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4TzPHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWsvU2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4TzPXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -314,14 +320,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.0/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gWsISWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_Q4TzNHKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -333,7 +339,10 @@ <location y="375"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsIQGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4TMIHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -341,7 +350,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -351,7 +360,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -373,13 +382,16 @@ <location x="221" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.1" width="10" height="375"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsIRWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4TzMHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -389,7 +401,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -402,9 +414,9 @@ <label id="//@ownedInteractions.0/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWsIR2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4TzMnKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWsISGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4TzM3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -429,14 +441,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.2" width="10" height="10"> <label id="//@ownedInteractions.0/@participants.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gWtWYmyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_Q4VBWHKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -448,7 +460,10 @@ <location y="375"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.2" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsvX2yeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4UaR3KHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -456,7 +471,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -466,7 +481,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -488,13 +503,16 @@ <location x="351" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.2" width="10" height="375"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsvamyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4UaUnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -504,7 +522,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="375" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -517,9 +535,9 @@ <label id="//@ownedInteractions.0/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWsvbGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBUHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWsvbWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBUXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -547,9 +565,9 @@ <label id="//@ownedInteractions.0/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWsvbmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBUnKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWsvb2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBU3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -574,9 +592,9 @@ <label id="//@ownedInteractions.0/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWsvcGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBVHKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gWsvcWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBVXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -602,9 +620,9 @@ <label id="//@ownedInteractions.0/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWtWYGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4VBVnKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gWtWYWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4VBV3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -630,14 +648,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.3" width="50" height="50"> <label id="//@ownedInteractions.0/@participants.3"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gWsvXmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_Q4UaRnKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -649,7 +667,10 @@ <location x="-20" y="60"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.3" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsvVWyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.0/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4TzP3KHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -657,7 +678,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -667,7 +688,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="60" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -689,13 +710,16 @@ <location x="501" y="175"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.0/@participants.3" width="10" height="60"> - <siriusStyle xsi:type="diagram:Square" uid="_gWsvWmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.0/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_Q4UaQnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -705,7 +729,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="60" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -718,9 +742,9 @@ <label id="//@ownedInteractions.0/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gWsvXGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_Q4UaRHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gWsvXWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_Q4UaRXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__Raw__full.xmi index b8f7b39b97..aa8442a90c 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Basic__Observation__Diagram___to___storedFormat-Basic__Observation__Diagram__Raw__full.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0" width="270" height="150"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gczXc2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RFGSAXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -34,7 +34,7 @@ <location x="50" y="515"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0/@ownedOperands.0" width="270" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gczXdmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RFGSBHKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -49,7 +49,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@combinedFragments.0/@ownedOperands.1" width="270" height="60"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gczXd2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RFGSBXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -67,9 +67,9 @@ <label id="//@ownedInteractions.7/@constraints.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gc0lcmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFG5GHKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gc0lc2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFG5GXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -100,9 +100,9 @@ <label id="//@ownedInteractions.7/@constraints.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcz-amyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFGSFnKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcz-a2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFGSF3KHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -133,9 +133,9 @@ <label id="//@ownedInteractions.7/@constraints.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcz-aGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFGSFHKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcz-aWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFGSFXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -166,9 +166,9 @@ <label id="//@ownedInteractions.7/@constraints.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcz-ZmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFGSEnKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcz-Z2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFGSE3KHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -199,9 +199,9 @@ <label id="//@ownedInteractions.7/@constraints.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcz-ZGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFGSEHKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcz-ZWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFGSEXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -232,7 +232,7 @@ <label id="//@ownedInteractions.7/@ends.0"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcyJMWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc0XKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -252,7 +252,7 @@ <label id="//@ownedInteractions.7/@ends.1"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcyJM2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc03KHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -272,7 +272,7 @@ <label id="//@ownedInteractions.7/@ends.10"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywTmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD6XKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -292,7 +292,7 @@ <label id="//@ownedInteractions.7/@ends.11"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywT2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD6nKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -312,7 +312,7 @@ <label id="//@ownedInteractions.7/@ends.12"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywUGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD63KHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -332,7 +332,7 @@ <label id="//@ownedInteractions.7/@ends.13"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywUWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD7HKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -352,7 +352,7 @@ <label id="//@ownedInteractions.7/@ends.14"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcyJMGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc0HKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -372,7 +372,7 @@ <label id="//@ownedInteractions.7/@ends.15"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcyJMmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc0nKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -392,7 +392,7 @@ <label id="//@ownedInteractions.7/@ends.16"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcyJNGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc1HKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -412,7 +412,7 @@ <label id="//@ownedInteractions.7/@ends.17"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywQmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc2HKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -432,7 +432,7 @@ <label id="//@ownedInteractions.7/@ends.18"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywRWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD4HKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -452,7 +452,7 @@ <label id="//@ownedInteractions.7/@ends.19"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywR2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD4nKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -470,9 +470,9 @@ <label id="//@ownedInteractions.7/@constraints.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcywSGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFFD43KHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcywSWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFFD5HKHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -505,7 +505,7 @@ <label id="//@ownedInteractions.7/@ends.2"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcyJNWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc1XKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -523,9 +523,9 @@ <label id="//@ownedInteractions.7/@constraints.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcywQGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFEc1nKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcywQWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFEc13KHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -558,7 +558,7 @@ <label id="//@ownedInteractions.7/@ends.20"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gczXeWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFGSB3KHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -578,7 +578,7 @@ <label id="//@ownedInteractions.7/@ends.21"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gczXemyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFGSCHKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -598,7 +598,7 @@ <label id="//@ownedInteractions.7/@ends.3"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywRGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFEc2nKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -618,7 +618,7 @@ <label id="//@ownedInteractions.7/@ends.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywRmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD4XKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -638,7 +638,7 @@ <label id="//@ownedInteractions.7/@ends.5"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywSmyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD5XKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -658,7 +658,7 @@ <label id="//@ownedInteractions.7/@ends.6"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcywS2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFD5nKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -676,9 +676,9 @@ <label id="//@ownedInteractions.7/@constraints.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcywTGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFFD53KHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcywTWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFFD6HKHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -711,7 +711,7 @@ <label id="//@ownedInteractions.7/@ends.7"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gczXe2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFGSCXKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -729,9 +729,9 @@ <label id="//@ownedInteractions.7/@constraints.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gczXfGyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFGSCnKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gczXfWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFGSC3KHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -764,7 +764,7 @@ <label id="//@ownedInteractions.7/@ends.8"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcz-YGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFGSDHKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -784,7 +784,7 @@ <label id="//@ownedInteractions.7/@ends.9"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gcz-YWyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFGSDXKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/observation.svg"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@nodeMappings[name='endObsPoint']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -802,9 +802,9 @@ <label id="//@ownedInteractions.7/@constraints.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_gcz-YmyeEeuXco3AXfG1Yg" sourceArrow="InputArrow"> + <siriusStyle xsi:type="diagram:BracketEdgeStyle" uid="_RFGSDnKHEeuS0J0wgZOrhA" sourceArrow="InputArrow"> <description xsi:type="style:BracketEdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@additionalLayers[name='duration']/@edgeMappings[name='constraint']/@style"/> - <centerLabelStyle uid="_gcz-Y2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="136,136,136"/> + <centerLabelStyle uid="_RFGSD3KHEeuS0J0wgZOrhA" showIcon="false" labelColor="136,136,136"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4002"> <children type="6001"> @@ -835,14 +835,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@executions.0" width="20" height="50"> <label id="//@ownedInteractions.7/@executions.0"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gczXVmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RFFq-XKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -855,9 +855,9 @@ <label id="//@ownedInteractions.7/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gczXV2yeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFFq-nKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_gczXWGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFFq-3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -884,14 +884,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@executions.1" width="20" height="50"> <label id="//@ownedInteractions.7/@executions.1"> - <location x="-1"/> + <location x="-34"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gczXWWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RFFq_HKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -903,7 +903,7 @@ <location x="-5" y="200"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@interactionUses.0" width="270" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_gczXeGyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RFGSBnKHEeuS0J0wgZOrhA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -921,9 +921,9 @@ <label id="//@ownedInteractions.7/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gcz-cmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFG5EnKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gcz-c2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFG5E3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -950,9 +950,9 @@ <label id="//@ownedInteractions.7/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gc0lcGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFG5FnKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gc0lcWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFG5F3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -979,9 +979,9 @@ <label id="//@ownedInteractions.7/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gcz-dGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFG5FHKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_gcz-dWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFG5FXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1008,9 +1008,9 @@ <label id="//@ownedInteractions.7/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gcz-bmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFGSGnKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gcz-b2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFGSG3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1037,9 +1037,9 @@ <label id="//@ownedInteractions.7/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gcz-bGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFGSGHKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gcz-bWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFGSGXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1066,7 +1066,7 @@ <label id="//@ownedInteractions.7/@messages.4"> <location x="-1"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gcywQ2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> + <siriusStyle xsi:type="diagram:Dot" uid="_RFEc2XKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1" backgroundColor="0,0,0"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Lost%20Message%20End']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2001"> @@ -1086,9 +1086,9 @@ <label id="//@ownedInteractions.7/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gcz-cGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFG5EHKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gcz-cWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFG5EXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1113,14 +1113,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.7/@participants.0"> - <location x="-1"/> + <location x="-44"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gczXcmyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_RFGSAHKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1132,7 +1132,10 @@ <location y="690"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gczXXWyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.7/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RFFrAHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1140,7 +1143,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1172,13 +1175,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.0" width="10" height="690"> - <siriusStyle xsi:type="diagram:Square" uid="_gczXaGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.7/@participants.0"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RFFrC3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-44"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1201,9 +1207,9 @@ <label id="//@ownedInteractions.7/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gczXamyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFFrDXKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gczXa2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFFrDnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1230,9 +1236,9 @@ <label id="//@ownedInteractions.7/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gczXbGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFFrD3KHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gczXbWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFFrEHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1259,9 +1265,9 @@ <label id="//@ownedInteractions.7/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gczXbmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFFrEXKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gczXb2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFFrEnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1288,9 +1294,9 @@ <label id="//@ownedInteractions.7/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gczXcGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFFrE3KHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_gczXcWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFFrFHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1317,14 +1323,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="50" height="50"> <label id="//@ownedInteractions.7/@participants.1"> - <location x="-1"/> + <location x="-4"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_gczXXGyeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RFFq_3KHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1336,7 +1342,10 @@ <location x="-20" y="560"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gcywUmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.7/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RFFD7XKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1344,7 +1353,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1355,7 +1364,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1388,7 +1397,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1420,13 +1429,16 @@ <location x="200" y="105"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.7/@participants.1" width="10" height="560"> - <siriusStyle xsi:type="diagram:Square" uid="_gcywXWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.7/@participants.1"> + <location x="-44"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RFFD-HKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1437,7 +1449,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-34"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1470,7 +1482,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" x="-4"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1493,9 +1505,9 @@ <label id="//@ownedInteractions.7/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gczXVGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RFFq93KHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_gczXVWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RFFq-HKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1524,7 +1536,7 @@ <label id="//@ownedInteractions.7/@states.0"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_gczXWmyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_RFFq_XKHEeuS0J0wgZOrhA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1544,7 +1556,7 @@ <label id="//@ownedInteractions.7/@states.1"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_gczXW2yeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_RFFq_nKHEeuS0J0wgZOrhA" labelSize="15" showIcon="false" labelColor="16,120,103" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="69,181,196"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@conditionnalStyles.0/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex___to___storedFormat-Complex__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex___to___storedFormat-Complex__Raw__full.xmi index f4e63eb59c..3bc9f362a5 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex___to___storedFormat-Complex__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex___to___storedFormat-Complex__Raw__full.xmi @@ -1,14 +1,17 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.0" width="20" height="310"> - <siriusStyle xsi:type="diagram:Square" uid="_ghXHU2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.2/@executions.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKg9knKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -18,7 +21,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -28,7 +31,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="270"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -41,9 +44,9 @@ <label id="//@ownedInteractions.2/@messages.10" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghXuSGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKg9m3KHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghXuSWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKg9nHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -68,13 +71,16 @@ <location x="-5" y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.1" width="20" height="270"> - <siriusStyle xsi:type="diagram:Square" uid="_ghXuSmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <label id="//@ownedInteractions.2/@executions.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKg9nXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -84,7 +90,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -97,9 +103,9 @@ <label id="//@ownedInteractions.2/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghXuUGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKhkknKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghXuUWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKhkk3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -125,14 +131,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.2" width="20" height="230"> <label id="//@ownedInteractions.2/@executions.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_ghXuUmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> + <siriusStyle xsi:type="diagram:Square" uid="_RKhklHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="163,219,218"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -145,9 +151,9 @@ <label id="//@ownedInteractions.2/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghXuU2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKhklXKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghXuVGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKhklnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -174,9 +180,9 @@ <label id="//@ownedInteractions.2/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghXuVWyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKhkl3KHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghXuVmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKhkmHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -202,14 +208,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.3" width="20" height="190"> <label id="//@ownedInteractions.2/@executions.3"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_ghYVc2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RKiys3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -222,9 +228,9 @@ <label id="//@ownedInteractions.2/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghYVdGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKiytHKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghYVdWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKiytXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -251,9 +257,9 @@ <label id="//@ownedInteractions.2/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghYVdmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKiytnKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_ghYVd2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKiyt3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -280,9 +286,9 @@ <label id="//@ownedInteractions.2/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghYVeGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKiyuHKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_ghYVeWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKiyuXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -309,14 +315,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.4" width="20" height="50"> <label id="//@ownedInteractions.2/@executions.4"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_ghXHMGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RKgWeXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -329,9 +335,9 @@ <label id="//@ownedInteractions.2/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghXHMWyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKgWenKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghXHMmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKgWe3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -358,14 +364,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.5" width="20" height="50"> <label id="//@ownedInteractions.2/@executions.5"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_ghY8YGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RKiyunKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -378,9 +384,9 @@ <label id="//@ownedInteractions.2/@messages.12" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghY8YWyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKiyu3KHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghY8YmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKiyvHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -408,13 +414,16 @@ <location x="-5" y="370"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.6" width="20" height="150"> - <siriusStyle xsi:type="diagram:Square" uid="_ghY8gWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.2/@executions.6"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKjZznKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -424,7 +433,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="30" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -437,9 +446,9 @@ <label id="//@ownedInteractions.2/@messages.14" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghY8h2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKjZ1HKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghY8iGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKjZ1XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -468,9 +477,9 @@ <label id="//@ownedInteractions.2/@messages.18" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghY8iWyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKjZ1nKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghY8imyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKjZ13KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -496,14 +505,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.7" width="20" height="90"> <label id="//@ownedInteractions.2/@executions.7"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_ghZjcGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_RKjZ2HKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -516,9 +525,9 @@ <label id="//@ownedInteractions.2/@messages.15" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjcWyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKjZ2XKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghZjcmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKjZ2nKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -545,9 +554,9 @@ <label id="//@ownedInteractions.2/@messages.17" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjc2yeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKjZ23KHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghZjdGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKjZ3HKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -576,14 +585,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@executions.8" width="20" height="50"> <label id="//@ownedInteractions.2/@executions.8"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_ghYVUmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RKiLoHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -596,9 +605,9 @@ <label id="//@ownedInteractions.2/@messages.16" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghYVU2yeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKiLoXKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghYVVGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKiLonKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -627,9 +636,9 @@ <label id="//@ownedInteractions.2/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKhmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA7HKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghaKh2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA7XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -655,9 +664,9 @@ <label id="//@ownedInteractions.2/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKimyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA8HKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghaKi2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA8XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -683,9 +692,9 @@ <label id="//@ownedInteractions.2/@messages.10" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKiGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA7nKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghaKiWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA73KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -711,9 +720,9 @@ <label id="//@ownedInteractions.2/@messages.11" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKhGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA6nKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghaKhWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA63KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -741,9 +750,9 @@ <label id="//@ownedInteractions.2/@messages.12" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKgGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA5nKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghaKgWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA53KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -772,9 +781,9 @@ <label id="//@ownedInteractions.2/@messages.13" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjfGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA1nKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghZjfWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA13KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -800,9 +809,9 @@ <label id="//@ownedInteractions.2/@messages.14" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjemyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA1HKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghZje2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA1XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -831,9 +840,9 @@ <label id="//@ownedInteractions.2/@messages.15" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjeGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA0nKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghZjeWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA03KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -860,9 +869,9 @@ <label id="//@ownedInteractions.2/@messages.16" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjdmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA0HKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghZjd2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA0XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -889,9 +898,9 @@ <label id="//@ownedInteractions.2/@messages.17" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjgGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA2nKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghZjgWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA23KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -920,9 +929,9 @@ <label id="//@ownedInteractions.2/@messages.18" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjfmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA2HKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghZjf2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA2XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -948,9 +957,9 @@ <label id="//@ownedInteractions.2/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjimyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA5HKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghZji2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA5XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -976,9 +985,9 @@ <label id="//@ownedInteractions.2/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKgmyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA6HKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghaKg2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA6XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1005,9 +1014,9 @@ <label id="//@ownedInteractions.2/@messages.4" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjhmyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA4HKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="138,226,52"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Create%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_ghZjh2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA4XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1034,9 +1043,9 @@ <label id="//@ownedInteractions.2/@messages.5" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjiGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA4nKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghZjiWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA43KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1063,9 +1072,9 @@ <label id="//@ownedInteractions.2/@messages.6" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjgmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA3HKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghZjg2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA3XKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1092,9 +1101,9 @@ <label id="//@ownedInteractions.2/@messages.7" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghZjhGyeEeuXco3AXfG1Yg" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA3nKHEeuS0J0wgZOrhA" lineStyle="dash" targetArrow="InputFillClosedArrow" size="2" strokeColor="246,139,139"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Destroy%20Participant%20Message']/@style"/> - <centerLabelStyle uid="_ghZjhWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA33KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1121,9 +1130,9 @@ <label id="//@ownedInteractions.2/@messages.8" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKjGyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA8nKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghaKjWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkA83KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1149,9 +1158,9 @@ <label id="//@ownedInteractions.2/@messages.9" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghaKjmyeEeuXco3AXfG1Yg" lineStyle="dot" size="0" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKkA9HKHEeuS0J0wgZOrhA" lineStyle="dot" size="0" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Return%20Message']/@style"/> - <centerLabelStyle uid="_ghaKj2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKkn4HKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1175,14 +1184,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_ghYVVWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_RKiLo3KHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1194,7 +1203,10 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_ghXuWGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKhkmnKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1202,7 +1214,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1213,7 +1225,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1223,7 +1235,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1245,13 +1257,16 @@ <location x="50" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.0" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_ghXuYmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKhkpHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1262,7 +1277,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1272,7 +1287,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1285,9 +1300,9 @@ <label id="//@ownedInteractions.2/@messages.0" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghXuZ2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKhkqXKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghXuaGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKhkqnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1313,9 +1328,9 @@ <label id="//@ownedInteractions.2/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghYVUGyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKhkq3KHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghYVUWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKhkrHKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1341,14 +1356,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_ghXuV2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_RKhkmXKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1360,7 +1375,10 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_ghXHNGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKgWfXKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1370,7 +1388,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1380,7 +1398,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1390,7 +1408,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="270"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1401,7 +1419,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1411,7 +1429,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1433,7 +1451,10 @@ <location x="200" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.1" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_ghXHRGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKg9g3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1441,7 +1462,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1451,7 +1472,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="230"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1461,7 +1482,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="20" width="20" height="270"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1472,7 +1493,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1482,7 +1503,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1495,9 +1516,9 @@ <label id="//@ownedInteractions.2/@messages.13" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghXHUWyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKg9kHKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghXHUmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKg9kXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1523,14 +1544,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.2" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_ghZjdWyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_RKjZ3XKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1542,7 +1563,10 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.2" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_ghY8ZGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKiyvnKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1551,7 +1575,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1561,7 +1585,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="30" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1572,7 +1596,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1582,7 +1606,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1604,14 +1628,17 @@ <location x="350" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.2" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_ghY8c2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.2"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKjZwHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1621,7 +1648,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="30" width="20" height="90"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1632,7 +1659,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1642,7 +1669,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1655,9 +1682,9 @@ <label id="//@ownedInteractions.2/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghY8f2yeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKjZzHKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghY8gGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKjZzXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1683,14 +1710,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.3" width="10" height="10"> <label id="//@ownedInteractions.2/@participants.3"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_ghY8Y2yeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_RKiyvXKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1702,7 +1729,10 @@ <location y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.3" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_ghYVVmyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKiLpHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1710,7 +1740,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1721,7 +1751,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1732,7 +1762,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1742,7 +1772,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1764,13 +1794,16 @@ <location x="500" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.3" width="10" height="650"> - <siriusStyle xsi:type="diagram:Square" uid="_ghYVZWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKiLs3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1781,7 +1814,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1792,7 +1825,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1802,7 +1835,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="650" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1815,9 +1848,9 @@ <label id="//@ownedInteractions.2/@messages.11" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_ghYVcWyeEeuXco3AXfG1Yg" size="2" strokeColor="114,159,207"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RKiysXKHEeuS0J0wgZOrhA" size="2" strokeColor="114,159,207"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Call%20Message']/@style"/> - <centerLabelStyle uid="_ghYVcmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RKiysnKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -1845,14 +1878,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.4" width="50" height="50"> <label id="//@ownedInteractions.2/@participants.4"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_ghXHM2yeEeuXco3AXfG1Yg" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> + <siriusStyle xsi:type="diagram:WorkspaceImage" uid="_RKgWfHKHEeuS0J0wgZOrhA" showIcon="false" workspacePath="/org.eclipse.sirius.sample.interactions.design/description/eol.png"> <description xsi:type="style:WorkspaceImageDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='EOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1864,13 +1897,16 @@ <location x="-20" y="100"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.4" width="10" height="100"> - <siriusStyle xsi:type="diagram:Square" uid="_ghWgJmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.2/@participants.4"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKgWdHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1881,7 +1917,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1891,7 +1927,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="100" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1903,7 +1939,10 @@ <location x="55" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.2/@participants.4" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_ghWgIGyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.2/@participants.4"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RKfvYHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1911,7 +1950,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1922,7 +1961,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3005"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1932,7 +1971,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="100" width="50" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> diff --git a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__Raw__full.xmi b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__Raw__full.xmi index e0ee03e8d3..39efedc79e 100644 --- a/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__Raw__full.xmi +++ b/plugins/org.eclipse.sirius.tests.junit/data/sequence/unit/layout/mappingbased/xmi/raw/mb_seq_ed_from___storedFormat-Complex__with__CF___to___storedFormat-Complex__with__CF__Raw__full.xmi @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ASCII"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:formatdata="http://www.eclipse.org/sirius/dsl/formatdata/1.1.0" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0"> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.0" width="140" height="280"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVE2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnRXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -34,7 +34,7 @@ <location x="50" y="240"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.0/@ownedOperands.0" width="140" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVFmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnSHKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -49,7 +49,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.0/@ownedOperands.1" width="140" height="160"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVF2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnSXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -64,7 +64,7 @@ <location y="120"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.1" width="330" height="590"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVGWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnS3KHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="166,227,187" foregroundColor="166,227,187"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -88,7 +88,7 @@ <location x="50" y="560"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.1/@ownedOperands.0" width="330" height="560"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVG2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnTXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -103,7 +103,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.2" width="120" height="120"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVHGyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnTnKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -127,7 +127,7 @@ <location x="60" y="380"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.2/@ownedOperands.0" width="120" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVHmyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnUHKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -142,7 +142,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.3" width="310" height="120"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVH2yeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnUXKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -166,7 +166,7 @@ <location x="60" y="770"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.3/@ownedOperands.0" width="310" height="90"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVIWyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnU3KHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -181,7 +181,7 @@ <location y="30"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.4" width="310" height="200"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVImyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnVHKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundColor="136,205,170" foregroundColor="136,205,170"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -205,7 +205,7 @@ <location x="60" y="950"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@combinedFragments.4/@ownedOperands.0" width="310" height="170"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVJGyeEeuXco3AXfG1Yg" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnVnKHEeuS0J0wgZOrhA" showIcon="false" labelColor="11,16,140" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1" borderColor="22,147,165" backgroundStyle="GradientTopToBottom" backgroundColor="160,222,214" foregroundColor="160,222,214"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Combined%20Fragment']/@subContainerMappings[name='Operand']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3008"> @@ -221,14 +221,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.0" width="20" height="90"> <label id="//@ownedInteractions.5/@executions.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_glmuEWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RQRAQnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -241,14 +241,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.1" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_glmuEmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RQRAQ3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -261,14 +261,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.2" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.2"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gln8NWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RQS1YnKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -280,13 +280,16 @@ <location x="-5" y="330"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.3" width="20" height="630"> - <siriusStyle xsi:type="diagram:Square" uid="_gln8NmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.5/@executions.3"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQS1Y3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -297,7 +300,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -307,7 +310,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="460" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -320,9 +323,9 @@ <label id="//@ownedInteractions.5/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gln8OWyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQS1ZnKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gln8OmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQS1Z3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -349,9 +352,9 @@ <label id="//@ownedInteractions.5/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gln8O2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQS1aHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gln8PGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQS1aXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -378,14 +381,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.4" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.4"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gln8PWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_RQS1anKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -397,7 +400,10 @@ <location x="15" y="70"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.5" width="20" height="160"> - <siriusStyle xsi:type="diagram:Square" uid="_glmuE2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.5/@executions.5"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQRARHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -414,7 +420,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -424,7 +430,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="70" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -436,7 +442,10 @@ <location x="-5" y="650"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.6" width="20" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_glmuFmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <label id="//@ownedInteractions.5/@executions.6"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQRAR3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -452,7 +461,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -465,14 +474,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.7" width="20" height="110"> <label id="//@ownedInteractions.5/@executions.7"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_glmuGWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <siriusStyle xsi:type="diagram:Square" uid="_RQRnQHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -485,14 +494,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.8" width="20" height="50"> <label id="//@ownedInteractions.5/@executions.8"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Square" uid="_gln8PmyeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> + <siriusStyle xsi:type="diagram:Square" uid="_RQS1a3KHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="181,228,225"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -504,7 +513,10 @@ <location x="15" y="480"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@executions.9" width="20" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_gln8P2yeEeuXco3AXfG1Yg" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> + <label id="//@ownedInteractions.5/@executions.9"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQS1bHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="1" borderSizeComputationExpression="1" borderColor="39,76,114" width="2" height="5" color="199,237,232"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='Execution']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -520,7 +532,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -532,7 +544,7 @@ <location x="-5" y="1135"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@interactionUses.0" width="310" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVGGyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnSnKHEeuS0J0wgZOrhA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -547,7 +559,7 @@ <location x="60" y="150"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@interactionUses.1" width="310" height="50"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVEmyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnRHKHEeuS0J0wgZOrhA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -562,7 +574,7 @@ <location x="60" y="680"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@interactionUses.2" width="120" height="100"> - <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_glnVEWyeEeuXco3AXfG1Yg" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:FlatContainerStyle" uid="_RQRnQ3KHEeuS0J0wgZOrhA" labelAlignment="LEFT" borderSize="1" borderSizeComputationExpression="1"> <description xsi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@containerMappings[name='Interaction%20Use']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="2002"> @@ -580,9 +592,9 @@ <label id="//@ownedInteractions.5/@messages.0" width="-1" height="-1"> <location x="-1" y="-61"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_glojNmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQS1dnKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_glojN2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQS1d3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -611,9 +623,9 @@ <label id="//@ownedInteractions.5/@messages.1" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_glojNGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQS1dHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_glojNWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQS1dXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -640,9 +652,9 @@ <label id="//@ownedInteractions.5/@messages.2" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_glojMmyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQS1cnKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_glojM2yeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQS1c3KHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -669,9 +681,9 @@ <label id="//@ownedInteractions.5/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_glojMGyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQS1cHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_glojMWyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQS1cXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -696,14 +708,14 @@ </formatdata:EdgeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.0" width="10" height="10"> <label id="//@ownedInteractions.5/@participants.0"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_gln8QmyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_RQS1b3KHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -715,13 +727,16 @@ <location y="1350"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.0" width="10" height="1302"> - <siriusStyle xsi:type="diagram:Square" uid="_gln8JWyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.5/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQSOXHKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -731,12 +746,12 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -747,7 +762,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -757,7 +772,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="460" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -779,7 +794,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -790,7 +805,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -810,9 +825,9 @@ <label id="//@ownedInteractions.5/@messages.0" width="-1" height="-1"> <location x="-1" y="-61"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gln8MWyeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQSOaHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gln8MmyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQSOaXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -841,9 +856,9 @@ <label id="//@ownedInteractions.5/@messages.3" width="-1" height="-1"> <location y="-10"/> </label> - <siriusStyle xsi:type="diagram:EdgeStyle" uid="_gln8M2yeEeuXco3AXfG1Yg" size="2" strokeColor="77,137,20"> + <siriusStyle xsi:type="diagram:EdgeStyle" uid="_RQS1YHKHEeuS0J0wgZOrhA" size="2" strokeColor="77,137,20"> <description xsi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@edgeMappings[name='Feature%20Access%20Message']/@style"/> - <centerLabelStyle uid="_gln8NGyeEeuXco3AXfG1Yg" showIcon="false"/> + <centerLabelStyle uid="_RQS1YXKHEeuS0J0wgZOrhA" showIcon="false"/> </siriusStyle> <gmfView xsi:type="notation:Edge" type="4001"> <children type="6001"> @@ -869,7 +884,10 @@ <location x="55" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.0" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_glnVJWyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.5/@participants.0"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQRnV3KHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -877,7 +895,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -887,12 +905,12 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -903,7 +921,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -913,7 +931,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="460" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -935,7 +953,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -946,7 +964,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -976,14 +994,14 @@ </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.1" width="10" height="10"> <label id="//@ownedInteractions.5/@participants.1"> - <location x="-1"/> + <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Dot" uid="_glnVEGyeEeuXco3AXfG1Yg" strokeSizeComputationExpression="1"> + <siriusStyle xsi:type="diagram:Dot" uid="_RQRnQnKHEeuS0J0wgZOrhA" strokeSizeComputationExpression="1"> <description xsi:type="style:DotDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='redimEOL']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -995,7 +1013,10 @@ <location y="1350"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.1" width="120" height="50"> - <siriusStyle xsi:type="diagram:Square" uid="_glmG8GyeEeuXco3AXfG1Yg" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> + <label id="//@ownedInteractions.5/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQQZIHKHEeuS0J0wgZOrhA" labelSize="12" showIcon="false" labelPosition="node" width="12" height="5" color="114,159,207"> <labelFormat>bold</labelFormat> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@style"/> </siriusStyle> @@ -1003,7 +1024,7 @@ <children type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1013,11 +1034,11 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1028,7 +1049,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1051,7 +1072,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1061,7 +1082,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="70" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1072,7 +1093,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1112,13 +1133,16 @@ <location x="230" y="50"/> </formatdata:NodeFormatData> <formatdata:NodeFormatData id="//@ownedInteractions.5/@participants.1" width="10" height="1302"> - <siriusStyle xsi:type="diagram:Square" uid="_glmuCGyeEeuXco3AXfG1Yg" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> + <label id="//@ownedInteractions.5/@participants.1"> + <location y="5"/> + </label> + <siriusStyle xsi:type="diagram:Square" uid="_RQRAOXKHEeuS0J0wgZOrhA" showIcon="false" borderSize="3" borderSizeComputationExpression="3" borderColor="114,159,207" width="1" height="40" color="255,255,255"> <description xsi:type="style:SquareDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3002"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1128,11 +1152,11 @@ <layoutConstraint xsi:type="notation:Bounds" x="2" y="1302" width="10" height="10"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-44"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1143,7 +1167,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1166,7 +1190,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="12" width="120" height="30"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1176,7 +1200,7 @@ <layoutConstraint xsi:type="notation:Bounds" x="12" y="70" width="20" height="50"/> </children> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1187,7 +1211,7 @@ </children> <children type="3001"> <children type="5001"> - <layoutConstraint xsi:type="notation:Location" x="-1"/> + <layoutConstraint xsi:type="notation:Location" y="5"/> </children> <children type="3003"> <styles xsi:type="notation:ShapeStyle" fontName="Sans"/> @@ -1220,7 +1244,7 @@ <label id="//@ownedInteractions.5/@states.0"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_glmuGGyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_RQRASXKHEeuS0J0wgZOrhA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1240,7 +1264,7 @@ <label id="//@ownedInteractions.5/@states.1"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_gln8QWyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_RQS1bnKHEeuS0J0wgZOrhA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> @@ -1260,7 +1284,7 @@ <label id="//@ownedInteractions.5/@states.2"> <location y="5"/> </label> - <siriusStyle xsi:type="diagram:Ellipse" uid="_glmuGmyeEeuXco3AXfG1Yg" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> + <siriusStyle xsi:type="diagram:Ellipse" uid="_RQRnQXKHEeuS0J0wgZOrhA" labelSize="15" showIcon="false" labelColor="166,227,187" borderColor="4,14,61" labelPosition="node" horizontalDiameter="12" verticalDiameter="3" color="16,127,201"> <description xsi:type="style:EllipseNodeDescription" href="platform:/plugin/org.eclipse.sirius.sample.interactions.design/description/interaction.odesign#//@ownedViewpoints[name='Interactions']/@ownedRepresentations[name='Sequence%20Diagram%20on%20Interaction']/@defaultLayer/@nodeMappings[name='Participant']/@borderedNodeMappings[name='Lifeline']/@borderedNodeMappings[name='State']/@style"/> </siriusStyle> <gmfView xsi:type="notation:Node" type="3001"> |
