Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCéline Janssens2014-09-03 12:02:20 +0000
committerCéline Janssens2014-09-22 15:16:07 +0000
commit802249ab83497e7e4f8b472a89c92b3486db874b (patch)
treeba487be56628a1c1d06816f62438585c098dcd36 /plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands
parente2666ce6ba7779d2c5087bc91c7a1dd236cdc563 (diff)
downloadorg.eclipse.papyrus-802249ab83497e7e4f8b472a89c92b3486db874b.tar.gz
org.eclipse.papyrus-802249ab83497e7e4f8b472a89c92b3486db874b.tar.xz
org.eclipse.papyrus-802249ab83497e7e4f8b472a89c92b3486db874b.zip
440230: [All Diagrams] Add Margins to the Labels
Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=440230 - Margin for Node Named Element - PapyrusWrappingLabel deprecated has been deleted and references changed to oep.infra.gmfdiag.common.figure.node.PapyrusWrappingLabel - Add refreshMargin() method to PapyrusLabelEditPart - New format and CleanUp refactor for class and composite diagramme - Add reference to PapyrusLabelEditPart fort PortNameEditPart (via xtend) - Add ref to PapyrusWrappingLabel into UMLEdgeFigure children - modify GmfGen for Composite Diag : PortNameEditPart is now a PapyrusWrappingLabel - rebase with Master Luna Change-Id: I3b8fcd39bf9b1c00886b6357c7d054ebc3fd8aba Signed-off-by: Céline Janssens <Celine.Janssens@all4tec.net>
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AbstractAlignLabelCommand.java8
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AlignLabelCommand.java23
2 files changed, 0 insertions, 31 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AbstractAlignLabelCommand.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AbstractAlignLabelCommand.java
deleted file mode 100644
index 577ea2cd271..00000000000
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AbstractAlignLabelCommand.java
+++ /dev/null
@@ -1,8 +0,0 @@
-package org.eclipse.papyrus.infra.gmfdiag.common.commands;
-
-import org.eclipse.gef.commands.Command;
-
-public class AbstractAlignLabelCommand extends Command {
-
-
-}
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AlignLabelCommand.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AlignLabelCommand.java
deleted file mode 100644
index e5dfcbc67ed..00000000000
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/AlignLabelCommand.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.eclipse.papyrus.infra.gmfdiag.common.commands;
-
-import org.eclipse.draw2d.geometry.Rectangle;
-import org.eclipse.gef.commands.Command;
-import org.eclipse.papyrus.infra.gmfdiag.common.editpart.PapyrusLabelEditPart;
-
-public class AlignLabelCommand extends AbstractAlignLabelCommand {
-
- private Rectangle constraint;
-
- private PapyrusLabelEditPart label;
-
- @Override
- public void execute() {
- // TODO Auto-generated method stub
- //super.execute();
-
- System.out.println("____J'execute la commande");
- }
-
-
-
-}

Back to the top