Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Noyrit2015-03-12 14:39:39 +0000
committerFlorian Noyrit2015-03-12 14:39:39 +0000
commita270d3be93c10ae162e64c21125c24976db468f4 (patch)
treeae166eef8f338e55ab41f71c6a1afd876bc6181f /plugins/developer/org.eclipse.papyrus.def/xtend
parentac0b523b15cadd664dcd550f97df4713af0e6bba (diff)
downloadorg.eclipse.papyrus-a270d3be93c10ae162e64c21125c24976db468f4.tar.gz
org.eclipse.papyrus-a270d3be93c10ae162e64c21125c24976db468f4.tar.xz
org.eclipse.papyrus-a270d3be93c10ae162e64c21125c24976db468f4.zip
Migration of Composite Structure Diagram to ElementTypesConfigurations.
Diffstat (limited to 'plugins/developer/org.eclipse.papyrus.def/xtend')
-rw-r--r--plugins/developer/org.eclipse.papyrus.def/xtend/aspects/xpt/providers/ElementTypes.xtend2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/xpt/providers/ElementTypes.xtend b/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/xpt/providers/ElementTypes.xtend
index a07e8e1011d..5b0ee5b1422 100644
--- a/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/xpt/providers/ElementTypes.xtend
+++ b/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/xpt/providers/ElementTypes.xtend
@@ -55,7 +55,7 @@ import xpt.Common
boolean result = KNOWN_ELEMENT_TYPES.contains(elementType);
if (!result) {
- IElementType[] supertypes = elementType.getAllSuperTypes();
+ org.eclipse.gmf.runtime.emf.type.core.IElementType[] supertypes = elementType.getAllSuperTypes();
for (int i = 0; !result && (i < supertypes.length); i++) {
result = KNOWN_ELEMENT_TYPES.contains(supertypes[i]);
}

Back to the top