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/InteractionUseRectangleFigure.java')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/InteractionUseRectangleFigure.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/InteractionUseRectangleFigure.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/InteractionUseRectangleFigure.java
index 8bd8e8a51e3..16f71760591 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/InteractionUseRectangleFigure.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/figures/InteractionUseRectangleFigure.java
@@ -34,20 +34,20 @@ public class InteractionUseRectangleFigure extends StereotypeInteractionFigure {
* @see
* org.eclipse.papyrus.uml.diagram.sequence.figures.InteractionRectangleFigure#createContentPane()
*/
- @Override
- protected RectangleFigure createContentPane() {
- // Create the ContentPane
- RectangleFigure contentPane = new RectangleFigure();
- contentPane.setOutline(false);
- contentPane.setFill(false);
- contentPane.setLayoutManager(new StackLayout());
- // Create the centered label
- centerLabel = new WrappingLabel();
- centerLabel.setAlignment(PositionConstants.CENTER);
- // Add the label to the contentPane
- contentPane.add(centerLabel);
- return contentPane;
- }
+// @Override
+// protected RectangleFigure createContentPane() {
+// // Create the ContentPane
+// RectangleFigure contentPane = new RectangleFigure();
+// contentPane.setOutline(false);
+// contentPane.setFill(false);
+// contentPane.setLayoutManager(new StackLayout());
+// // Create the centered label
+// centerLabel = new WrappingLabel();
+// centerLabel.setAlignment(PositionConstants.CENTER);
+// // Add the label to the contentPane
+// contentPane.add(centerLabel);
+// return contentPane;
+// }
public WrappingLabel getCenterLabel() {
return centerLabel;

Back to the top