Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2018-03-22 16:04:26 +0000
committerPatrick Tessier2018-03-28 09:48:27 +0000
commit45180e0aea42e7426f2bd4c8335ed692c992d385 (patch)
treea27d8017f3e713c96c5f05841677907b277192db /plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra
parent41142ab0809f02c75287e5b80cf985ecd56cbc43 (diff)
downloadorg.eclipse.papyrus-45180e0aea42e7426f2bd4c8335ed692c992d385.tar.gz
org.eclipse.papyrus-45180e0aea42e7426f2bd4c8335ed692c992d385.tar.xz
org.eclipse.papyrus-45180e0aea42e7426f2bd4c8335ed692c992d385.zip
Bug 531596: [SequenceDiagram] When a message is moved bottom the
lifeline must be resized When a message moved, move its weak references and resize the life lines if needed. Requirements are specified in the 'RequirementsSequenceDiagram.usecases'. Change-Id: Ia120d71ac0b6ff49a74f9c8f5a4544e9c7c2504d Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@cea.fr>
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/figure/node/LinkLFSVGNodePlateFigure.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/figure/node/LinkLFSVGNodePlateFigure.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/figure/node/LinkLFSVGNodePlateFigure.java
index 4fcb4d70cee..35f44db0ba0 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/figure/node/LinkLFSVGNodePlateFigure.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/figure/node/LinkLFSVGNodePlateFigure.java
@@ -9,6 +9,7 @@
* Contributors:
* CEA LIST - Initial API and implementation
* Mickael ADAM (ALL4TEC) mickael.adam@all4tec.net - Bug 482586
+ * Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Bug 531596
*
*****************************************************************************/
@@ -102,4 +103,13 @@ public class LinkLFSVGNodePlateFigure extends SVGNodePlateFigure {
return createAnchor(pt);
}
}
+
+ /**
+ * Get the graphical edit part.
+ *
+ * @return The myHost.
+ */
+ public GraphicalEditPart getGraphicalEditPart() {
+ return myHost;
+ }
}

Back to the top