Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/ExecutionSpecificationNodePlate.java')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/ExecutionSpecificationNodePlate.java47
1 files changed, 46 insertions, 1 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/ExecutionSpecificationNodePlate.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/ExecutionSpecificationNodePlate.java
index eb51cb32a7d..39894b9df3d 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/ExecutionSpecificationNodePlate.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/ExecutionSpecificationNodePlate.java
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Copyright (c) 2017 CEA LIST and others.
+ * Copyright (c) 2017, 2018 CEA LIST, Christian W. Damus, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -10,16 +10,23 @@
*
* Contributors:
* CEA LIST - Initial API and implementation
+ * Christian W. Damus - bug 539373
*
*****************************************************************************/
package org.eclipse.papyrus.uml.diagram.sequence.figures;
import org.eclipse.draw2d.ConnectionAnchor;
+import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.PositionConstants;
+import org.eclipse.draw2d.TreeSearch;
import org.eclipse.draw2d.geometry.PrecisionPoint;
import org.eclipse.gef.GraphicalEditPart;
+import org.eclipse.gmf.runtime.diagram.ui.figures.BorderedNodeFigure;
import org.eclipse.papyrus.infra.gmfdiag.common.figure.node.LinkLFSVGNodePlateFigure;
+import org.eclipse.papyrus.uml.diagram.sequence.anchors.AnchorConstants;
+import org.eclipse.papyrus.uml.diagram.sequence.anchors.NodeBottomAnchor;
+import org.eclipse.papyrus.uml.diagram.sequence.anchors.NodeTopAnchor;
import org.eclipse.papyrus.uml.diagram.sequence.edit.helpers.AnchorHelper;
/**
@@ -48,6 +55,12 @@ public class ExecutionSpecificationNodePlate extends LinkLFSVGNodePlateFigure im
@Override
public ConnectionAnchor getConnectionAnchor(String terminal) {
+ if (AnchorConstants.START_TERMINAL.equals(terminal)) {
+ return new NodeTopAnchor(this);
+ } else if (AnchorConstants.END_TERMINAL.equals(terminal)) {
+ return new NodeBottomAnchor(this);
+ }
+
// Use FixedAnchorEx for MessageSync, this will be invoked by mapConnectionAnchor(termial) operation.
if (terminal != null && terminal.indexOf("{") != -1 && terminal.indexOf("}") != -1) {
int position = AnchorHelper.FixedAnchorEx.parsePosition(terminal);
@@ -57,4 +70,36 @@ public class ExecutionSpecificationNodePlate extends LinkLFSVGNodePlateFigure im
}
return super.getConnectionAnchor(terminal);
}
+
+ @Override
+ public String getConnectionAnchorTerminal(ConnectionAnchor c) {
+ if (c instanceof NodeTopAnchor) {
+ return AnchorConstants.START_TERMINAL;
+ } else if (c instanceof NodeBottomAnchor) {
+ return AnchorConstants.END_TERMINAL;
+ }
+ return super.getConnectionAnchorTerminal(c);
+ }
+
+ @Override
+ public boolean containsPoint(int x, int y) {
+ boolean result = super.containsPoint(x, y);
+ if (!result) {
+ // Hit test my border items
+ BorderedNodeFigure parent = (BorderedNodeFigure) getParent();
+ result = parent.getBorderItemContainer().containsPoint(x, y);
+ }
+ return result;
+ }
+
+ @Override
+ public final IFigure findFigureAt(int x, int y, TreeSearch search) {
+ IFigure result = super.findFigureAt(x, y, search);
+ if (result == null) {
+ // Search my border items
+ BorderedNodeFigure parent = (BorderedNodeFigure) getParent();
+ result = parent.getBorderItemContainer().findFigureAt(x, y, search);
+ }
+ return result;
+ }
}

Back to the top