Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Noyrit2016-02-08 08:54:49 +0000
committerFlorian Noyrit2016-02-08 11:44:57 +0000
commit4cb6a18a38917eb479b89bfa770158f3d7018791 (patch)
treefe3b567a815809af80dfeecf2961d44738fc0ec9 /plugins/infra/gmfdiag
parent42c80a5c823fda32ad4a2f7dd2178297870adbad (diff)
downloadorg.eclipse.papyrus-4cb6a18a38917eb479b89bfa770158f3d7018791.tar.gz
org.eclipse.papyrus-4cb6a18a38917eb479b89bfa770158f3d7018791.tar.xz
org.eclipse.papyrus-4cb6a18a38917eb479b89bfa770158f3d7018791.zip
Bug 487442 - Add profile/stereotype support to the
elementtypeconfiguration framework Change-Id: I40493e2b70490fc2a534b5d45bd848ab8957c1cc
Diffstat (limited to 'plugins/infra/gmfdiag')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/helper/DefaultEditHelper.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/helper/DefaultEditHelper.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/helper/DefaultEditHelper.java
index 296aaad7e2c..cf6ad196938 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/helper/DefaultEditHelper.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/helper/DefaultEditHelper.java
@@ -46,8 +46,6 @@ import org.eclipse.papyrus.infra.services.edit.utils.IRequestCacheEntries;
/**
* <pre>
- * This is a default Helper for UML element.
- *
* The only reason to override getDestroyElementWithDependentsCommand and getDestroyElementCommand
* method here is to propagate the shared IClientContext used by Papyrus during the request creation.
* Without this changes, the command to destroy dependent element won't be correctly created,
@@ -366,7 +364,7 @@ public class DefaultEditHelper extends AbstractNotifierEditHelper {
advices = ElementTypeRegistry.getInstance().getEditHelperAdvice(editHelperContext);
}
}
-
+
Arrays.sort(advices, new AdviceComparator());
return advices;

Back to the top