Bug 516936 - [Migration][expansion] typo

Actions
-typo
-adding new test resources
-adding log4j

Tests
-mvn clean install
-manual checking of output file.

Change-Id: I59c70f544972882061b68576a453be347ce72401
Signed-off-by: Francois Le Fevre <francois.le-fevre@cea.fr>
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/pom.xml b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/pom.xml
index 84b4eac..1e0ec1f 100644
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/pom.xml
+++ b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/pom.xml
@@ -18,6 +18,10 @@
 			<artifactId>org.eclipse.papyrus.developer.migration.elementtypereference.common</artifactId>
 			<version>0.0.1-SNAPSHOT</version>
 		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+		</dependency>
 	</dependencies>
 
 </project>
\ No newline at end of file
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/main/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/ElementTypeMigrationExpansionModel.java b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/main/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/ElementTypeMigrationExpansionModel.java
index 905916f..879d35d 100644
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/main/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/ElementTypeMigrationExpansionModel.java
+++ b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/main/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/ElementTypeMigrationExpansionModel.java
@@ -19,6 +19,7 @@
 import javax.xml.parsers.DocumentBuilderFactory;
 
 import org.apache.commons.io.FileUtils;
+import org.apache.log4j.Logger;
 import org.eclipse.papyrus.developer.migration.elementtypereference.common.AbstractElementTypeMigrationModel;
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
@@ -28,27 +29,29 @@
 
 /**
  * 
- * Dedicated to migrate
+ * Dedicated to migrate 
  *
  */
-public class ElementTypeMigrationExpansionModel extends AbstractElementTypeMigrationModel {
+public class ElementTypeMigrationExpansionModel extends AbstractElementTypeMigrationModel{
 
+	static Logger LOG4J = Logger.getLogger("org.eclipse.papyrus.developer.migration.elementtypereference.expansion.ElementTypeMigrationExpansionModel");
+	
 	static String ELEMENTTYPESCONFIGURATIONS = new String("elementtypesconfigurations");
 	static String EXPANSIONMODEL = new String("expansionmodel");
 
-
+	
 	public ElementTypeMigrationExpansionModel(String folderRootGit4ElementtypeData) {
 		super(folderRootGit4ElementtypeData);
 	}
 
-	public void migrateModelDocuments(String rootFolder, String outputRootFolder) {
+	public void migrateModelDocuments(String rootFolder, String outputRootFolder){
 		Document doc = null;
 		try {
-			String[] extensions = new String[] { "xmi" };
+			String[] extensions = new String[] {EXPANSIONMODEL};
 
 			File folder = new File(rootFolder);
 
-			List<File> files = (List<File>) FileUtils.listFiles(folder, extensions, true);
+			List<File> files = (List<File>) FileUtils.listFiles(folder, extensions, true	);
 			boolean migrated;
 			for (File file : files) {
 				migrated = false;
@@ -57,45 +60,46 @@
 					DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
 					doc = dBuilder.parse(file);
 
-					// optional, but recommended
-					// read this - http://stackoverflow.com/questions/13786607/normalization-in-dom-parsing-with-java-how-does-it-work
+					//optional, but recommended
+					//read this - http://stackoverflow.com/questions/13786607/normalization-in-dom-parsing-with-java-how-does-it-work
 					doc.getDocumentElement().normalize();
 
-					NodeList nList = doc.getElementsByTagName("expansionmodel:DiagramExpansion");
-					if (nList != null && nList.getLength() != 0) {
-						System.err.println("Dealing with expansionmodel: " + file.getAbsolutePath());
-
+					NodeList nList=  doc.getElementsByTagName("expansionmodel:DiagramExpansion");
+					if(nList!=null && nList.getLength()!=0) {
+						LOG4J.debug("Dealing with expansionmodel: "+ file.getAbsolutePath());
+						
 						Element root = doc.getDocumentElement();
-						if (root.getAttribute("xmlns:elementtypesconfigurations").length() == 0) {
+						if(root.getAttribute("xmlns:elementtypesconfigurations").length()==0) {
 							root.setAttribute("xmlns:elementtypesconfigurations", "http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2");
 						}
-
+						
 						nList = doc.getElementsByTagName("representations");
 						for (int temp = 0; temp < nList.getLength(); temp++) {
 							doc.getElementsByTagName("ElementCreationMenuModel:Folder");
-							// xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2"
-
+							//xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2"
+							
 							Node nNode = nList.item(temp);
 							Element eElement = (Element) nNode;
-							if (eElement.getAttribute("graphicalElementType") != null) {
-								if (identifier2Id.get(eElement.getAttribute("graphicalElementType")) != null) {
+							if(eElement.getAttribute("graphicalElementType")!=null) {
+								if(identifier2Id.get(eElement.getAttribute("graphicalElementType"))!=null) {
 									Element newChild = doc.createElement("graphicalElementTypeRef");
 									newChild.setAttribute("xsi:type", identifier2Id.get(eElement.getAttribute("graphicalElementType")).get(2));
-									newChild.setAttribute("href", "platform:/plugin/" + identifier2Id.get(eElement.getAttribute("graphicalElementType")).get(1) + "#" + identifier2Id.get(eElement.getAttribute("graphicalElementType")).get(0));
+									newChild.setAttribute("href", "platform:/plugin/"+identifier2Id.get(eElement.getAttribute("graphicalElementType")).get(1)+"#"+identifier2Id.get(eElement.getAttribute("graphicalElementType")).get(0));
 									eElement.appendChild(newChild);
 									eElement.removeAttribute("graphicalElementType");
-									migrated = true;
-
-								} else {
-									System.err.println(eElement.getAttribute("graphicalElementType") + "\t@" + identifier2Id.get(eElement.getAttribute("graphicalElementType")));
+									migrated=true;
+									
+								}
+								else {
+									LOG4J.warn(eElement.getAttribute("graphicalElementType")+"\t@"+identifier2Id.get(eElement.getAttribute("graphicalElementType")));	
 								}
 							}
 						}
-						if (migrated) {
-							exportDocument2File(doc, file, outputRootFolder);
+						if(migrated) {
+							exportDocument2File(doc, file, outputRootFolder) ;
 						}
-
-
+						
+						
 					}
 				}
 			}
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/test/ElementTypeMigrationExpansionModelTest.java b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/test/ElementTypeMigrationExpansionModelTest.java
index d1408bf..e4544f4 100644
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/test/ElementTypeMigrationExpansionModelTest.java
+++ b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/java/org/eclipse/papyrus/developer/migration/elementtypereference/expansionmodel/test/ElementTypeMigrationExpansionModelTest.java
@@ -12,42 +12,39 @@
  *****************************************************************************/
 package org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel.test;
 
-
-
-import static org.junit.Assert.assertEquals;
-
 import java.io.File;
 import java.io.IOException;
-
+import static org.junit.jupiter.api.Assertions.assertEquals;
 import org.apache.commons.io.FileUtils;
+import org.apache.log4j.Logger;
 import org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel.ElementTypeMigrationExpansionModel;
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
 
 
 /**
  * 
- * Dedicated to test migration for elementtype in expansionmodel
+ * Dedicated to test migration for elementtype in expansionmodel 
  *
  */
-public class ElementTypeMigrationExpansionModelTest {
-
-
+public class ElementTypeMigrationExpansionModelTest{
+	static Logger LOG4J = Logger.getLogger("org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel.test.ElementTypeMigrationExpansionModelTest");
+	
 	@Test
-	public void myFirstTest() {
+	void myFirstTest() {
 		String folderRootGit4ElementtypeData = new String("src/test/resources/input/");
 		String folderRootGit4ExpansionModel = new String("src/test/resources/input/");
 		String outputRootFolder = new String("target");
 		ElementTypeMigrationExpansionModel myElementTypeMigrationCreationMenuModel = new ElementTypeMigrationExpansionModel(folderRootGit4ElementtypeData);
-
-		myElementTypeMigrationCreationMenuModel.migrateModelDocuments(folderRootGit4ExpansionModel, outputRootFolder);
-
-		File file1 = new File("src/test/resources/output/AddBorderItem.xmi");
-		File file2 = new File("target/test-classes/output/AddBorderItem.xmi");
+		
+		myElementTypeMigrationCreationMenuModel.migrateModelDocuments(folderRootGit4ExpansionModel,outputRootFolder );
+		
+		File file1 = new File("src/test/resources/output/blockDefinitionDiagramConfig.expansionmodel");
+		File file2 = new File("target/blockDefinitionDiagramConfig.expansionmodel");
 		try {
-			System.err.println(file1.getAbsolutePath());
-			System.err.println(file2.getAbsolutePath());
+			LOG4J.debug(file1.getAbsolutePath());
+			LOG4J.debug(file2.getAbsolutePath());
 			boolean isTwoEqual = FileUtils.contentEquals(file1, file2);
-			assertEquals(true, isTwoEqual);
+			assertEquals(true,isTwoEqual);
 		} catch (IOException e) {
 			// TODO Auto-generated catch block
 			e.printStackTrace();
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/AddBorderItem.xmi b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/AddBorderItem.xmi
deleted file mode 100644
index 459cd50..0000000
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/AddBorderItem.xmi
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<expansionmodel:DiagramExpansion
-    xmi:version="2.0"
-    xmlns:xmi="http://www.omg.org/XMI"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:expansionmodel="http:///expansionmodel.ecore"
-    xmi:id="_BOX98NnkEeSFtu511b-yaw"
-    ID="test AddBorderItem">
-  <usages diagramType="Class Diagram"
-      representations="//@usages.0/@gmftRepresentations.0"
-      name="Add acomparment on class of papyrus">
-    <gmftRepresentations
-        editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ClassEditPart"
-        name="Reuse representation of class of the class diagram"
-        viewFactory="org.eclipse.papyrus.infra.gmfdiag.common.utils.ClassifierViewFactory"
-        subRepresentations="//@libraries.0/@representations.0"
-        reusedID="Class_Shape"/>
-  </usages>
-  <libraries
-      name="library">
-    <representations
-        xsi:type="expansionmodel:Representation"
-        editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.NestedInterfaceForClassEditPart"
-        name="Interface as BorderItem"
-        viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory"
-        graphicalElementType="org.eclipse.papyrus.uml.diagram.testexpansion.Interface_BorderItem"/>
-  </libraries>
-</expansionmodel:DiagramExpansion>
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.di b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.di
deleted file mode 100644
index 8634d4c..0000000
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.di
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"/>

diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.notation b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.notation
deleted file mode 100644
index 007cff1..0000000
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.notation
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<notation:Diagram xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.2/notation" xmlns:style="http://www.eclipse.org/papyrus/infra/viewpoints/policy/style" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xmi:id="_zW-jQOKJEeSwE5hduTH6nQ" type="PapyrusUMLClassDiagram" name="NewDiagram" measurementUnit="Pixel">
-  <children xmi:type="notation:Shape" xmi:id="_0OTz4OKJEeSwE5hduTH6nQ" type="Class_Shape">
-    <children xmi:type="notation:DecorationNode" xmi:id="_0OVpEOKJEeSwE5hduTH6nQ" type="Class_NameLabel"/>
-    <children xmi:type="notation:DecorationNode" xmi:id="_0OVpEeKJEeSwE5hduTH6nQ" type="Class_FloatingNameLabel">
-      <layoutConstraint xmi:type="notation:Location" xmi:id="_0OVpEuKJEeSwE5hduTH6nQ" y="5"/>
-    </children>
-    <children xmi:type="notation:BasicCompartment" xmi:id="_XrHXgOumEeW_9Ltteg9fQQ" type="Class_AttributeCompartment">
-      <styles xmi:type="notation:TitleStyle" xmi:id="_0OWQIeKJEeSwE5hduTH6nQ"/>
-      <styles xmi:type="notation:SortingStyle" xmi:id="_0OWQIuKJEeSwE5hduTH6nQ"/>
-      <styles xmi:type="notation:FilteringStyle" xmi:id="_0OWQI-KJEeSwE5hduTH6nQ"/>
-      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0OWQJOKJEeSwE5hduTH6nQ"/>
-    </children>
-    <children xmi:type="notation:BasicCompartment" xmi:id="_XrH-kOumEeW_9Ltteg9fQQ" type="Class_OperationCompartment">
-      <styles xmi:type="notation:TitleStyle" xmi:id="_0OWQJuKJEeSwE5hduTH6nQ"/>
-      <styles xmi:type="notation:SortingStyle" xmi:id="_0OW3MOKJEeSwE5hduTH6nQ"/>
-      <styles xmi:type="notation:FilteringStyle" xmi:id="_0OW3MeKJEeSwE5hduTH6nQ"/>
-      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0OW3MuKJEeSwE5hduTH6nQ"/>
-    </children>
-    <children xmi:type="notation:BasicCompartment" xmi:id="_XrIloOumEeW_9Ltteg9fQQ" type="Class_NestedClassifierCompartment">
-      <styles xmi:type="notation:TitleStyle" xmi:id="_0OW3NOKJEeSwE5hduTH6nQ"/>
-      <styles xmi:type="notation:SortingStyle" xmi:id="_0OW3NeKJEeSwE5hduTH6nQ"/>
-      <styles xmi:type="notation:FilteringStyle" xmi:id="_0OW3NuKJEeSwE5hduTH6nQ"/>
-      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0OW3N-KJEeSwE5hduTH6nQ"/>
-    </children>
-    <element xmi:type="uml:Class" href="ExpansionModelTest.uml#_0ONtQOKJEeSwE5hduTH6nQ"/>
-    <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0OTz4eKJEeSwE5hduTH6nQ" x="180" y="80"/>
-  </children>
-  <children xmi:type="notation:Shape" xmi:id="_zwbhEPPMEeSh3rAaWaQzhQ" type="Class_Shape">
-    <children xmi:type="notation:DecorationNode" xmi:id="_zwgZkPPMEeSh3rAaWaQzhQ" type="Class_NameLabel"/>
-    <children xmi:type="notation:DecorationNode" xmi:id="_zwhAoPPMEeSh3rAaWaQzhQ" type="Class_FloatingNameLabel">
-      <layoutConstraint xmi:type="notation:Location" xmi:id="_zwhAofPMEeSh3rAaWaQzhQ" y="5"/>
-    </children>
-    <children xmi:type="notation:BasicCompartment" xmi:id="_XrJMsOumEeW_9Ltteg9fQQ" type="Class_AttributeCompartment">
-      <styles xmi:type="notation:TitleStyle" xmi:id="_zwhnsfPMEeSh3rAaWaQzhQ"/>
-      <styles xmi:type="notation:SortingStyle" xmi:id="_zwhnsvPMEeSh3rAaWaQzhQ"/>
-      <styles xmi:type="notation:FilteringStyle" xmi:id="_zwhns_PMEeSh3rAaWaQzhQ"/>
-      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_zwhntPPMEeSh3rAaWaQzhQ"/>
-    </children>
-    <children xmi:type="notation:BasicCompartment" xmi:id="_XrJzwOumEeW_9Ltteg9fQQ" type="Class_OperationCompartment">
-      <styles xmi:type="notation:TitleStyle" xmi:id="_zwhntvPMEeSh3rAaWaQzhQ"/>
-      <styles xmi:type="notation:SortingStyle" xmi:id="_zwhnt_PMEeSh3rAaWaQzhQ"/>
-      <styles xmi:type="notation:FilteringStyle" xmi:id="_zwhnuPPMEeSh3rAaWaQzhQ"/>
-      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_zwhnufPMEeSh3rAaWaQzhQ"/>
-    </children>
-    <children xmi:type="notation:BasicCompartment" xmi:id="_XrKa0OumEeW_9Ltteg9fQQ" type="Class_NestedClassifierCompartment">
-      <styles xmi:type="notation:TitleStyle" xmi:id="_zwhnu_PMEeSh3rAaWaQzhQ"/>
-      <styles xmi:type="notation:SortingStyle" xmi:id="_zwhnvPPMEeSh3rAaWaQzhQ"/>
-      <styles xmi:type="notation:FilteringStyle" xmi:id="_zwhnvfPMEeSh3rAaWaQzhQ"/>
-      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_zwhnvvPMEeSh3rAaWaQzhQ"/>
-    </children>
-    <element xmi:type="uml:Class" href="ExpansionModelTest.uml#__FNz0PMjEeSc2PGFYV7S2w"/>
-    <layoutConstraint xmi:type="notation:Bounds" xmi:id="_zwbhEfPMEeSh3rAaWaQzhQ" x="460" y="80"/>
-  </children>
-  <styles xmi:type="notation:StringValueStyle" xmi:id="_zW-jQeKJEeSwE5hduTH6nQ" name="diagram_compatibility_version" stringValue="1.2.0"/>
-  <styles xmi:type="notation:DiagramStyle" xmi:id="_zW-jQuKJEeSwE5hduTH6nQ"/>
-  <styles xmi:type="style:PapyrusViewStyle" xmi:id="_zW-jQ-KJEeSwE5hduTH6nQ">
-    <owner xmi:type="uml:Model" href="ExpansionModelTest.uml#_zV8ogOKJEeSwE5hduTH6nQ"/>
-  </styles>
-  <element xmi:type="uml:Model" href="ExpansionModelTest.uml#_zV8ogOKJEeSwE5hduTH6nQ"/>
-</notation:Diagram>
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.uml b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.uml
deleted file mode 100644
index 3b7b0b8..0000000
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/ExpansionModelTest.uml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<uml:Model xmi:version="20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xmi:id="_zV8ogOKJEeSwE5hduTH6nQ" name="Model">

-  <packageImport xmi:type="uml:PackageImport" xmi:id="_zV8ogeKJEeSwE5hduTH6nQ">

-    <importedPackage xmi:type="uml:Model" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#_0"/>

-  </packageImport>

-  <packagedElement xmi:type="uml:Class" xmi:id="_0ONtQOKJEeSwE5hduTH6nQ" name="MyClass">

-    <nestedClassifier xmi:type="uml:Interface" xmi:id="_DpZwsPMkEeSc2PGFYV7S2w" name="MyNestedInterface"/>

-  </packagedElement>

-  <packagedElement xmi:type="uml:Class" xmi:id="__FNz0PMjEeSc2PGFYV7S2w" name="MyOtherClass"/>

-</uml:Model>

diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations
new file mode 100644
index 0000000..9702316
--- /dev/null
+++ b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations
@@ -0,0 +1,331 @@
+<?xml version="1.0" encoding="ASCII"?>
+<elementtypesconfigurations:ElementTypeSetConfiguration xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2" xmlns:stereotypematcher="http://www.eclipse.org/papyrus/uml/types/stereotypematcher/1.1" xmi:id="org.eclipse.papyrus.sysml14di.elementTypeSet.class.extension" identifier="org.eclipse.papyrus.sysml14di.elementTypeSet.class.extension" name="SysML" metamodelNsURI="http://www.eclipse.org/uml2/5.0.0/UML">
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_NestedBlock_Classifier" identifier="org.eclipse.papyrus.sysmldi.Block_NestedBlock_Classifier" name="Block (NestedBlock_Classifier)" hint="NestedBlock_Classifier">
+    <iconEntry xmi:id="_n9BYgdFeEeSxf_hKmhrahA" iconPath="/icons/full/obj16/Class.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_n9BYgtFeEeSxf_hKmhrahA">
+      <stereotypesQualifiedNames>SysML::Blocks::Block</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Label" description="" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Label" name="FlowPort (FlowPort_Label)" hint="FlowPort_Label">
+    <iconEntry xmi:id="_tjVDYc1xEeSsRbN4ihgqDg" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_tjVDYs1xEeSsRbN4ihgqDg">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Property_SignalAttributeLabel" description="" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Property_SignalAttributeLabel" name="FlowPort (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_39Sg0c1xEeSsRbN4ihgqDg" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_39Sg0s1xEeSsRbN4ihgqDg">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Property_InterfaceAttributeLabel" description="" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Property_InterfaceAttributeLabel" name="FlowPort (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_42Bfoc1xEeSsRbN4ihgqDg" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_42Bfos1xEeSsRbN4ihgqDg">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Property_ClassAttributeLabel" description="" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Property_ClassAttributeLabel" name="FlowPort (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_5h35Ac1xEeSsRbN4ihgqDg" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_5h35As1xEeSsRbN4ihgqDg">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Property_DataTypeAttributeLabel" description="" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Property_DataTypeAttributeLabel" name="FlowPort (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_8e8HEc1xEeSsRbN4ihgqDg" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_8e8HEs1xEeSsRbN4ihgqDg">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Property_PrimitiveTypeAttributeLabel" description="" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Property_PrimitiveTypeAttributeLabel" name="FlowPort (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_9Ecn4c1xEeSsRbN4ihgqDg" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_9Ecn4s1xEeSsRbN4ihgqDg">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi." identifier="org.eclipse.papyrus.sysmldi." name="ControlOperator (Operation_BorderItem)" hint="Operation_BorderItem">
+    <iconEntry xmi:id="_R01uQdH_EeSxf_hKmhrahA" iconPath="/icons/full/obj16/Operation.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_R01uQtH_EeSxf_hKmhrahA">
+      <stereotypesQualifiedNames>SysML::Activities::ControlOperator</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Operation"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Verify_Link" identifier="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Verify_Link" name="Verify_Link" hint="Verify_Link">
+    <iconEntry xmi:id="_YjE7YNPBEeSRNI7img_HuA" iconPath="/icons/full/obj16/Operation.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_YjE7YdPBEeSRNI7img_HuA">
+      <stereotypesQualifiedNames>SysML::Activities::ControlOperator</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Verify_Abstraction"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Actor_Class" description="Create an Actor in a UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.Actor_Class" name="Actor" hint="Class_Shape">
+    <iconEntry xmi:id="_HQFw0eduEeSUQvXhEVQh8w" iconPath="/icons/full/obj16/Actor.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_DlNdMIxDEeWFTecuNLV29Q" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:MetamodelTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/uml.elementtypesconfigurations#org.eclipse.papyrus.uml.Actor"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Unit_InstanceSpecification_Shape" description="Create an Unit in a UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.Unit_InstanceSpecification_Shape" name="Unit_InstanceSpecification_Shape" hint="InstanceSpecification_Shape">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_oSLsEIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Unit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.InstanceSpecification_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Unit_InstanceSpecification_Shape_CN" description="Create an Unit in a UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.Unit_InstanceSpecification_Shape_CN" name="Unit_InstanceSpecification_Shape_CN" hint="InstanceSpecification_Shape_CN">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_o7STcIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Unit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.InstanceSpecification_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.QuantityKind_InstanceSpecification_Shape" description="Create an QuantityKind in a UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.QuantityKind_InstanceSpecification_Shape" name="QuantityKind_InstanceSpecification_Shape" hint="InstanceSpecification_Shape">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_pCPQAIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.QuantityKind"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.InstanceSpecification_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.QuantityKind_InstanceSpecification_Shape_CN" description="Create an QuantityKind in a UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.QuantityKind_InstanceSpecification_Shape_CN" name="QuantityKind_InstanceSpecification_Shape_CN" hint="InstanceSpecification_Shape_CN">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_pM62AIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.QuantityKind"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.InstanceSpecification_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.PartAssociation_Association_Edge" description="Create an Part Association in a UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.PartAssociation_Association_Edge" name="PartAssociation_Association_Edge" hint="Association_Edge">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_paLO4Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.PartAssociation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Association_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Class_Port" description="Create an UML Port in an UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.Class_Port" name="Class_Port" hint="Class_Port">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_pxKLgIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:MetamodelTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/uml.elementtypesconfigurations#org.eclipse.papyrus.uml.Port"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Class_ProxyPort" description="Create an UML ProxyPort in an UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.Class_ProxyPort" name="Class_ProxyPort" hint="Class_ProxyPort">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_p7ucwIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Class_FullPort" description="Create an UML FullPort in an UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.Class_FullPort" name="Class_FullPort" hint="Class_FullPort">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_qF66kIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Label" description="" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Label" name="ProxyPort (ProxyPort_Label)" hint="ProxyPort_Label">
+    <iconEntry xmi:id="_0su20eyxEeSNB9Q0D5gJiA" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_0su20uyxEeSNB9Q0D5gJiA">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Label" description="" identifier="org.eclipse.papyrus.sysmldi.FullPort_Label" name="FullPort (FullPort_Label)" hint="FullPort_Label">
+    <iconEntry xmi:id="_1HdD8eyxEeSNB9Q0D5gJiA" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_1HdD8uyxEeSNB9Q0D5gJiA">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.SharedAssociation_Association_Edge" description="Create an Part Association in a UML Class Diagram" identifier="org.eclipse.papyrus.sysmldi.SharedAssociation_Association_Edge" name="SharedAssociation_Association_Edge" hint="Association_Edge">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_qorCUIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.SharedAssociation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Association_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Value_Property_ComponentAttributeLabel" name="Value (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_6swwIScIEeWZS4hs8J1fNQ" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_6swwIicIEeWZS4hs8J1fNQ" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ValueEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_rcBx4Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Value_Property_SignalAttributeLabel" name="Value (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_TSDJVCCyEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_I_GrICC4EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ValueEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_rt1TkIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Value_Property_InterfaceAttributeLabel" name="Value (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_TSDJVyCyEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_JH1wYCC4EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ValueEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_sHB2sIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Value_Property_ClassAttributeLabel" name="Value (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_TSDJWiCyEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_JSYMcCC4EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ValueEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_sTp9cIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Value_Property_DataTypeAttributeLabel" name="Value (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_TSDJXSCyEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_Jct0MCC4EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ValueEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_sepsgIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Value_Property_PrimitiveTypeAttributeLabel" name="Value (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_TSDJYCCyEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_Jn8MwCC4EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ValueEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_ss3usIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_label" description="Create a Block Reference" identifier="org.eclipse.papyrus.sysmldi.Reference_label" name="Reference" hint="SysML::Block::Reference_label">
+    <iconEntry xmi:id="_UqzmgFL7EeWix4nZluIdNA" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_VWNT8FL7EeWix4nZluIdNA" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_s7NssIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_ComponentAttributeLabel" name="Reference (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_bobH8SC-EeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_bobH8iC-EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_tF6g0Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_SignalAttributeLabel" name="Reference (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_zsNRESC-EeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_zsNREiC-EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_tQ628Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_InterfaceAttributeLabel" name="Reference (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_zsNRFCC-EeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_zsNRFSC-EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_th7ucIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_ClassAttributeLabel" name="Reference (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_zsNRFyC-EeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_zsNRGCC-EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_ts8EkIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_DataTypeAttributeLabel" name="Reference (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_zsNRGiC-EeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_zsNRGyC-EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_t1_S4Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_PrimitiveTypeAttributeLabel" name="Reference (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_zsNRHSC-EeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_zsNRHiC-EeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_uIUZAIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Parameter_label" description="Create a ConstraintBlock Parameter" identifier="org.eclipse.papyrus.sysmldi.Parameter_label" name="Parameter" hint="SysML::ConstraintBlock::Parameter_label">
+    <iconEntry xmi:id="_9vMgkAC4EeabH6-I0dvpUQ" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_L90icAC5EeabH6-I0dvpUQ" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Parameter"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_label" description="Create a Block Part" identifier="org.eclipse.papyrus.sysmldi.Part_label" name="Part" hint="SysML::Block::Part_label">
+    <iconEntry xmi:id="_zFrY0FYBEeW77p7V_ZuW3Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_2qdHIFYBEeW77p7V_ZuW3Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_uWc7oIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Part_Property_ComponentAttributeLabel" name="Part (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_cCfUISDGEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_fz9aoCDGEeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_uhUu4Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Part_Property_SignalAttributeLabel" name="Part (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_cCfUJCDGEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_gAyVsCDGEeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_usAU4Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Part_Property_InterfaceAttributeLabel" name="Part (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_cCfUJyDGEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_gLETECDGEeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_u6v7gIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Part_Property_ClassAttributeLabel" name="Part (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_cCfUKiDGEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_gUWK4CDGEeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_vHpvEIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Part_Property_DataTypeAttributeLabel" name="Part (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_cCfULSDGEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_ghOwUCDGEeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_vUTD8Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Part_Property_PrimitiveTypeAttributeLabel" name="Part (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_cCfUMCDGEeWj-IGNWcNL0Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_gtaLICDGEeWj-IGNWcNL0Q" description="" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_vf1lkIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_label" description="Create a FlowProperty" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_label" name="FlowProperty" hint="SysML::Block::FlowProperty_label">
+    <iconEntry xmi:id="_OG0VQGHGEeWbSMDuSXx8SQ" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_vr2oUIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConfiguredFlowProperty"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Activity_NamedElement_Shape" identifier="org.eclipse.papyrus.sysmldi.TestCase_Activity_NamedElement_Shape" name="Activity (NamedElement_Shape)" hint="NamedElement_DefaultShape">
+    <iconEntry xmi:id="_AymtQGXkEeWv7P_h5u3SSw" iconPath="icons/full/obj16/Activity.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_v9OFIIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Activity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.NamedElement_DefaultShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_FunctionBehavior_NamedElement_Shape" identifier="org.eclipse.papyrus.sysmldi.TestCase_FunctionBehavior_NamedElement_Shape" name="TestCase FunctionBehavior (NamedElement_Shape)" hint="NamedElement_DefaultShape">
+    <iconEntry xmi:id="_BUP4MGXYEeWv7P_h5u3SSw" iconPath="icons/full/obj16/FunctionBehavior.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_wJ4BEIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FunctionBehavior"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.NamedElement_DefaultShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Interaction_NamedElement_Shape" identifier="org.eclipse.papyrus.sysmldi.TestCase_Interaction_NamedElement_Shape" name="TestCase Interaction (NamedElement_Shape)" hint="NamedElement_DefaultShape">
+    <iconEntry xmi:id="_moMIcGXbEeWv7P_h5u3SSw" iconPath="icons/full/obj16/Interaction.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_wWrG8Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Interaction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.NamedElement_DefaultShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_OpaqueBehavior_NamedElement_Shape" identifier="org.eclipse.papyrus.sysmldi.TestCase_OpaqueBehavior_NamedElement_Shape" name="TestCase OpaqueBehavior (NamedElement_Shape)" hint="NamedElement_DefaultShape">
+    <iconEntry xmi:id="_nBxGEGXbEeWv7P_h5u3SSw" iconPath="icons/full/obj16/OpaqueBehavior.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_wjNHEIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.OpaqueBehavior"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.NamedElement_DefaultShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_ProtocolStateMachine_NamedElement_Shape" identifier="org.eclipse.papyrus.sysmldi.TestCase_ProtocolStateMachine_NamedElement_Shape" name="TestCase ProtocolStateMachine (NamedElement_Shape)" hint="NamedElement_DefaultShape">
+    <iconEntry xmi:id="_ni5dMGXbEeWv7P_h5u3SSw" iconPath="icons/full/obj16/ProtocolStateMachine.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_w0TeIIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProtocolStateMachine"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.NamedElement_DefaultShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_StateMachine_NamedElement_Shape" identifier="org.eclipse.papyrus.sysmldi.TestCase_StateMachine_NamedElement_Shape" name="TestCase StateMachine (NamedElement_Shape)" hint="NamedElement_DefaultShape">
+    <iconEntry xmi:id="_cUc84GXdEeWv7P_h5u3SSw" iconPath="icons/full/obj16/StateMachine.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_xDDr0Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.StateMachine"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.NamedElement_DefaultShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.PrivatePackageImport_PackageImport_Edge" identifier="org.eclipse.papyrus.sysmldi.PrivatePackageImport_PackageImport_Edge" name="PrivatePackageImport (PackageImport_Edge)" hint="PackageImport_Edge">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_uowzsJzxEeWe1L0yBJDEDA" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.PrivatePackageImport"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.PackageImport_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AssociationBlock_Shape" identifier="org.eclipse.papyrus.sysmldi.AssociationBlock_Shape" name="AssociationBlock" hint="AssociationClass_Shape">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_uowzTJzxEeWe1L0yBJDEDA" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AssociationBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.AssociationClass_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AssociationClass_Edge" identifier="org.eclipse.papyrus.sysmldi.AssociationClass_Edge" name="AssociationBlockEdge" hint="AssociationClass_Edge">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_uowzTJzxEeWe1L0yBJDEDA" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AssociationBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.AssociationClass_Edge"/>
+  </elementTypeConfigurations>
+</elementtypesconfigurations:ElementTypeSetConfiguration>
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14CompositeDiagram-extension.elementtypesconfigurations b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14CompositeDiagram-extension.elementtypesconfigurations
new file mode 100644
index 0000000..df1dd0b
--- /dev/null
+++ b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14CompositeDiagram-extension.elementtypesconfigurations
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="ASCII"?>
+<elementtypesconfigurations:ElementTypeSetConfiguration xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2" xmlns:stereotypematcher="http://www.eclipse.org/papyrus/uml/types/stereotypematcher/1.1" xmi:id="org.eclipse.papyrus.sysml14di.elementTypeSet.composite.extension" identifier="org.eclipse.papyrus.sysml14di.elementTypeSet.composite.extension" name="SysML" metamodelNsURI="http://www.eclipse.org/uml2/5.0.0/UML">
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ActorPart_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.ActorPart_Property_Shape" name="ActorPart (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_elfcUE_tEeWS1Mofp4ST9Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_elfcUU_tEeWS1Mofp4ST9Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ActorPartGraphicalEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_y-4fUIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ActorPart"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ActorPart_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ActorPart_Property_AttributeLabel" name="ActorPart" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_S5YwwR_5EeWp9rJ2gmw59A" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_5wiAgB_5EeWp9rJ2gmw59A" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ActorPartGraphicalEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_k5pC8Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ActorPart"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintProperty_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.ConstraintProperty_Property_Shape" name="ConstraintProperty (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_NIBSUe5lEeSNB9Q0D5gJiA" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_8Yf_oPfpEeSxkueHcFw1lw" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ConstraintPropertyGraphicalEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_yH1ikIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintProperty_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConstraintProperty_Property_AttributeLabel" name="ConstraintProperty (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_NIBSU-5lEeSNB9Q0D5gJiA" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_JOurMPfqEeSxkueHcFw1lw" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ConstraintPropertyGraphicalEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_yZR34Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.Part_Property_Shape" name="Part (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_VU6eQU_sEeWS1Mofp4ST9Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_VU6eQk_sEeWS1Mofp4ST9Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_ylyp4Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Part_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Part_Property_AttributeLabel" name="Part (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_VU6eRE_sEeWS1Mofp4ST9Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_VU6eRU_sEeWS1Mofp4ST9Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_yzWkwIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Part"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_Shape" name="Reference (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_elfcUE_tEeWS1Mofp4ST9Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_elfcUU_tEeWS1Mofp4ST9Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_y-4fUIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Reference_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Reference_Property_AttributeLabel" name="Reference (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_elfcU0_tEeWS1Mofp4ST9Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_elfcVE_tEeWS1Mofp4ST9Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_zLVm8Ie8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Reference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.Value_Property_Shape" name="Value (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_rArxsU_tEeWS1Mofp4ST9Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_rArxsk_tEeWS1Mofp4ST9Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ValueEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_zXt2EIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Value_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Value_Property_AttributeLabel" name="Value (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_rArxtE_tEeWS1Mofp4ST9Q" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_rArxtU_tEeWS1Mofp4ST9Q" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.CreateOrSelectBlockPropertyTypeEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_zl-UgIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Value"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Icon" description="Port_Shape FlowPort_Icon" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Icon" name="FlowPort (FlowPort_Icon)" hint="FlowPort_Icon">
+    <matcherConfiguration xsi:type="stereotypematcher:StereotypeApplicationMatcherConfiguration" xmi:id="_QUZYQlI9EeWJN-igpLcdKA">
+      <stereotypesQualifiedNames>SysML::DeprecatedElements::FlowPort</stereotypesQualifiedNames>
+    </matcherConfiguration>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.PropertySpecificType_Class_Shape_CN" description="Class_Shape_CN PropertySpecificType on" identifier="org.eclipse.papyrus.sysmldi.PropertySpecificType_Class_Shape_CN" name="PropertySpecificType(Class_Shape_CN)" hint="Class_Shape_CN">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_0ZtekIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.PropertySpecificType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintPropertyComposite" identifier="org.eclipse.papyrus.sysmldi.ConstraintPropertyComposite" name="ConstraintPropertyComposite" hint="ConstraintPropertyComposite">
+    <iconEntry xmi:id="_nOKtsYMDEeW6xruev4cRfQ" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <editHelperAdviceConfiguration xsi:type="elementtypesconfigurations:EditHelperAdviceConfiguration" xmi:id="_nOKtsoMDEeW6xruev4cRfQ" editHelperAdviceClassName="org.eclipse.papyrus.sysml14.diagram.common.advices.ConstraintPropertyGraphicalEditHelperAdvice"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_0zWtoIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintProperty"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Parameter_BorderItem" description="Property value hat must displayed in constraint property" identifier="org.eclipse.papyrus.sysmldi.Parameter_BorderItem" name="Parameter_BorderItem" hint="Parameter_BorderItem">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_1CJ-oIe8EeW05oI_3tpDGw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:MetamodelTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/uml.elementtypesconfigurations#org.eclipse.papyrus.uml.Property"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Constraint_Label" description="Used to display a constraint in the typed constraint property" identifier="org.eclipse.papyrus.sysmldi.Constraint_Label" name="Constraint_Label" hint="Constraint_Label">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_Hhhu4IosEeWtc9KcHKfIiw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:MetamodelTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/uml.elementtypesconfigurations#org.eclipse.papyrus.uml.Constraint"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Parameter_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.Parameter_Property_Shape" name="Parameter (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_edrxAYlmEeaZOo7yAgA8OQ" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_edrxA4lmEeaZOo7yAgA8OQ" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Parameter_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.Parameter_Property_AttributeLabel" name="Parameter (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_edrxBYlmEeaZOo7yAgA8OQ" iconPath="/icons/full/obj16/Property.gif" bundleId="org.eclipse.uml2.uml.edit"/>
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_edrxB4lmEeaZOo7yAgA8OQ" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Parameter_BorderItemClassShape" description="Property value hat must displayed in constraint block" identifier="org.eclipse.papyrus.sysmldi.Parameter_BorderItemClassShape" name="Parameter_BorderItem (Class_Shape)" hint="Parameter_BorderItem">
+    <matcherConfiguration xsi:type="elementtypesconfigurations:MatcherConfiguration" xmi:id="_TzcwcfRlEeakH_jG3IBwLw" matcherClassName="org.eclipse.papyrus.sysml14.service.types.matcher.internal.SysML14ProfileMatcher"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14-extension.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="platform:/plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape"/>
+  </elementTypeConfigurations>
+</elementtypesconfigurations:ElementTypeSetConfiguration>
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysMLDiUML.elementtypesconfigurations b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysMLDiUML.elementtypesconfigurations
new file mode 100644
index 0000000..98c4fd3
--- /dev/null
+++ b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysMLDiUML.elementtypesconfigurations
@@ -0,0 +1,1208 @@
+<?xml version="1.0" encoding="ASCII"?>
+<elementtypesconfigurations:ElementTypeSetConfiguration xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2" xmi:id="org.eclipse.papyrus.sysml14di.elementTypes" description="org.eclipse.papyrus.sysml14di.elementTypes" identifier="org.eclipse.papyrus.sysml14di.elementTypes" name="org.eclipse.papyrus.sysmldi.elementTypes" metamodelNsURI="http://www.eclipse.org/uml2/5.0.0/UML">
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AcceptChangeStructuralFeatureEventAction_AcceptEventAction_Shape" identifier="org.eclipse.papyrus.sysmldi.AcceptChangeStructuralFeatureEventAction_AcceptEventAction_Shape" name="AcceptChangeStructuralFeatureEventAction" hint="AcceptEventAction_Shape">
+    <iconEntry xmi:id="_BFqYMDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AcceptChangeStructuralFeatureEventAction.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AcceptChangeStructuralFeatureEventAction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.AcceptEventAction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_AttributeLabel" name="AdjunctProperty (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFqYMjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_ClassAttributeLabel" name="AdjunctProperty (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFqYNDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_ComponentAttributeLabel" name="AdjunctProperty (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFq_QDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_DataTypeAttributeLabel" name="AdjunctProperty (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFq_QjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_Edge" name="AdjunctProperty (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFq_RDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_InterfaceAttributeLabel" name="AdjunctProperty (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFq_RjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_PrimitiveTypeAttributeLabel" name="AdjunctProperty (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFq_SDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_Shape" name="AdjunctProperty (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFq_SjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_Shape_CN" name="AdjunctProperty (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFq_TDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.AdjunctProperty_Property_SignalAttributeLabel" name="AdjunctProperty (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFq_TjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AdjunctProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AdjunctProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AllocateActivityPartition_ActivityPartition_Shape" identifier="org.eclipse.papyrus.sysmldi.AllocateActivityPartition_ActivityPartition_Shape" name="AllocateActivityPartition (ActivityPartition_Shape)" hint="ActivityPartition_Shape">
+    <iconEntry xmi:id="_BFq_UDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AllocateActivityPartition.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AllocateActivityPartition"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.ActivityPartition_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.AllocateActivityPartition_ActivityPartition_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.AllocateActivityPartition_ActivityPartition_Shape_CN" name="AllocateActivityPartition (ActivityPartition_Shape_CN)" hint="ActivityPartition_Shape_CN">
+    <iconEntry xmi:id="_BFq_UjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/AllocateActivityPartition.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.AllocateActivityPartition"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.ActivityPartition_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Allocate_Abstraction_Abstraction_Edge" identifier="org.eclipse.papyrus.sysmldi.Allocate_Abstraction_Abstraction_Edge" name="Allocate (Abstraction_Edge)" hint="Abstraction_Edge">
+    <iconEntry xmi:id="_BFq_VDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Allocate.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Allocate_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Allocate_Abstraction_Abstraction_Shape" identifier="org.eclipse.papyrus.sysmldi.Allocate_Abstraction_Abstraction_Shape" name="Allocate (Abstraction_Shape)" hint="Abstraction_Shape">
+    <iconEntry xmi:id="_BFq_VjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Allocate.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Allocate_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Allocate_Abstraction_Abstraction_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Allocate_Abstraction_Abstraction_Shape_CN" name="Allocate (Abstraction_Shape_CN)" hint="Abstraction_Shape_CN">
+    <iconEntry xmi:id="_BFq_WDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Allocate.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Allocate_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BindingConnector_Connector_Edge" identifier="org.eclipse.papyrus.sysmldi.BindingConnector_Connector_Edge" name="BindingConnector" hint="Connector_Edge">
+    <iconEntry xmi:id="_BFq_WjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BindingConnector.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BindingConnector"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Connector_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Block_Class_ClassNestedClassifierLabel" name="Block (Class_ClassNestedClassifierLabel)" hint="Class_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BFq_XDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Block_Class_ComponentNestedClassifierLabel" name="Block (Class_ComponentNestedClassifierLabel)" hint="Class_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BFrmUTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Block_Class_InterfaceNestedClassifierLabel" name="Block (Class_InterfaceNestedClassifierLabel)" hint="Class_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BFrmUzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_MetaclassShape" identifier="org.eclipse.papyrus.sysmldi.Block_Class_MetaclassShape" name="Block (Class_MetaclassShape)" hint="Class_MetaclassShape">
+    <iconEntry xmi:id="_BFrmVTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_MetaclassShape_CN" identifier="org.eclipse.papyrus.sysmldi.Block_Class_MetaclassShape_CN" name="Block (Class_MetaclassShape_CN)" hint="Class_MetaclassShape_CN">
+    <iconEntry xmi:id="_BFrmVzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Block_Class_NestedClassifierLabel" name="Block (Class_NestedClassifierLabel)" hint="Class_NestedClassifierLabel">
+    <iconEntry xmi:id="_BFrmWTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_Shape" identifier="org.eclipse.papyrus.sysmldi.Block_Class_Shape" name="Block (Class_Shape)" hint="Class_Shape">
+    <iconEntry xmi:id="_BFrmWzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Block_Class_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Block_Class_Shape_CN" name="Block (Class_Shape_CN)" hint="Class_Shape_CN">
+    <iconEntry xmi:id="_BFrmXTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Block.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Block"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_AttributeLabel" name="BoundReference (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFrmXzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_ClassAttributeLabel" name="BoundReference (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFsNYTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_ComponentAttributeLabel" name="BoundReference (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFsNYzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_DataTypeAttributeLabel" name="BoundReference (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFsNZTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_Edge" name="BoundReference (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFsNZzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_InterfaceAttributeLabel" name="BoundReference (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFsNaTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_PrimitiveTypeAttributeLabel" name="BoundReference (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFsNazvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_Shape" name="BoundReference (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFsNbTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_Shape_CN" name="BoundReference (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFsNbzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.BoundReference_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.BoundReference_Property_SignalAttributeLabel" name="BoundReference (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFsNcTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/BoundReference.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.BoundReference"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ChangeStructuralFeatureEvent_ChangeEvent_Shape" identifier="org.eclipse.papyrus.sysmldi.ChangeStructuralFeatureEvent_ChangeEvent_Shape" name="ChangeStructuralFeatureEvent" hint="ChangeEvent_Shape">
+    <iconEntry xmi:id="_BFs0cTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ChangeStructuralFeatureEvent.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ChangeStructuralFeatureEvent"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.ChangeEvent_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_AttributeLabel" name="ClassifierBehaviorProperty (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFs0czvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_ClassAttributeLabel" name="ClassifierBehaviorProperty (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFs0dTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_ComponentAttributeLabel" name="ClassifierBehaviorProperty (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFs0dzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_DataTypeAttributeLabel" name="ClassifierBehaviorProperty (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFs0eTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_Edge" name="ClassifierBehaviorProperty (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFs0ezvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_InterfaceAttributeLabel" name="ClassifierBehaviorProperty (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFs0fTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_PrimitiveTypeAttributeLabel" name="ClassifierBehaviorProperty (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFs0fzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_Shape" name="ClassifierBehaviorProperty (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFs0gTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_Shape_CN" name="ClassifierBehaviorProperty (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFs0gzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ClassifierBehaviorProperty_Property_SignalAttributeLabel" name="ClassifierBehaviorProperty (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFs0hTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ClassifierBehaviorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ClassifierBehaviorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Conform_Generalization_Edge" identifier="org.eclipse.papyrus.sysmldi.Conform_Generalization_Edge" name="Conform" hint="Generalization_Edge">
+    <iconEntry xmi:id="_BFs0hzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Conform.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Conform"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Generalization_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_AttributeLabel" name="ConnectorProperty (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFtbgTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_ClassAttributeLabel" name="ConnectorProperty (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFtbgzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_ComponentAttributeLabel" name="ConnectorProperty (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFtbhTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_DataTypeAttributeLabel" name="ConnectorProperty (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFtbhzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_Edge" name="ConnectorProperty (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFtbiTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_InterfaceAttributeLabel" name="ConnectorProperty (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFtbizvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_PrimitiveTypeAttributeLabel" name="ConnectorProperty (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFtbjTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_Shape" name="ConnectorProperty (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFtbjzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_Shape_CN" name="ConnectorProperty (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFtbkTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ConnectorProperty_Property_SignalAttributeLabel" name="ConnectorProperty (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFtbkzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConnectorProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConnectorProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_ClassNestedClassifierLabel" name="ConstraintBlock (Class_ClassNestedClassifierLabel)" hint="Class_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BFtblTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_ComponentNestedClassifierLabel" name="ConstraintBlock (Class_ComponentNestedClassifierLabel)" hint="Class_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BFtblzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_InterfaceNestedClassifierLabel" name="ConstraintBlock (Class_InterfaceNestedClassifierLabel)" hint="Class_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BFtbmTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_MetaclassShape" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_MetaclassShape" name="ConstraintBlock (Class_MetaclassShape)" hint="Class_MetaclassShape">
+    <iconEntry xmi:id="_BFuCkTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_MetaclassShape_CN" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_MetaclassShape_CN" name="ConstraintBlock (Class_MetaclassShape_CN)" hint="Class_MetaclassShape_CN">
+    <iconEntry xmi:id="_BFuCkzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_NestedClassifierLabel" name="ConstraintBlock (Class_NestedClassifierLabel)" hint="Class_NestedClassifierLabel">
+    <iconEntry xmi:id="_BFuClTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_Shape" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_Shape" name="ConstraintBlock (Class_Shape)" hint="Class_Shape">
+    <iconEntry xmi:id="_BFuClzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.ConstraintBlock_Class_Shape_CN" name="ConstraintBlock (Class_Shape_CN)" hint="Class_Shape_CN">
+    <iconEntry xmi:id="_BFuCmTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ConstraintBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ConstraintBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Continuous_Parameter_Parameter_ParameterLabel" identifier="org.eclipse.papyrus.sysmldi.Continuous_Parameter_Parameter_ParameterLabel" name="Continuous (Parameter_ParameterLabel)" hint="Parameter_ParameterLabel">
+    <iconEntry xmi:id="_BFuCmzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Continuous.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Continuous_Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_ParameterLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Continuous_Parameter_Parameter_Shape" identifier="org.eclipse.papyrus.sysmldi.Continuous_Parameter_Parameter_Shape" name="Continuous (Parameter_Shape)" hint="Parameter_Shape">
+    <iconEntry xmi:id="_BFuCnTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Continuous.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Continuous_Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ControlOperator_Behavior_Behavior_InternalBehaviorLabel" identifier="org.eclipse.papyrus.sysmldi.ControlOperator_Behavior_Behavior_InternalBehaviorLabel" name="ControlOperator Behavior" hint="Behavior_InternalBehaviorLabel">
+    <iconEntry xmi:id="_BFuCnzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ControlOperator.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Behavior"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Behavior_InternalBehaviorLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_ClassOperationLabel" identifier="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_ClassOperationLabel" name="ControlOperator (Operation_ClassOperationLabel)" hint="Operation_ClassOperationLabel">
+    <iconEntry xmi:id="_BFuCoTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ControlOperator.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_ClassOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_ComponentOperationLabel" identifier="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_ComponentOperationLabel" name="ControlOperator (Operation_ComponentOperationLabel)" hint="Operation_ComponentOperationLabel">
+    <iconEntry xmi:id="_BFuCozvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ControlOperator.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_ComponentOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_DataTypeOperationLabel" identifier="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_DataTypeOperationLabel" name="ControlOperator (Operation_DataTypeOperationLabel)" hint="Operation_DataTypeOperationLabel">
+    <iconEntry xmi:id="_BFuCpTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ControlOperator.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_DataTypeOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_InterfaceOperationLabel" identifier="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_InterfaceOperationLabel" name="ControlOperator (Operation_InterfaceOperationLabel)" hint="Operation_InterfaceOperationLabel">
+    <iconEntry xmi:id="_BFuCpzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ControlOperator.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_InterfaceOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_OperationLabel" identifier="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_OperationLabel" name="ControlOperator (Operation_OperationLabel)" hint="Operation_OperationLabel">
+    <iconEntry xmi:id="_BFuCqTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ControlOperator.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_OperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_PrimitiveTypeOperationLabel" identifier="org.eclipse.papyrus.sysmldi.ControlOperator_Operation_Operation_PrimitiveTypeOperationLabel" name="ControlOperator (Operation_PrimitiveTypeOperationLabel)" hint="Operation_PrimitiveTypeOperationLabel">
+    <iconEntry xmi:id="_BFuCqzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ControlOperator.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ControlOperator_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_PrimitiveTypeOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Copy_Abstraction_Abstraction_Edge" identifier="org.eclipse.papyrus.sysmldi.Copy_Abstraction_Abstraction_Edge" name="Copy (Abstraction_Edge)" hint="Abstraction_Edge">
+    <iconEntry xmi:id="_BFuCrTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Copy.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Copy_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Copy_Abstraction_Abstraction_Shape" identifier="org.eclipse.papyrus.sysmldi.Copy_Abstraction_Abstraction_Shape" name="Copy (Abstraction_Shape)" hint="Abstraction_Shape">
+    <iconEntry xmi:id="_BFuCrzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Copy.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Copy_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Copy_Abstraction_Abstraction_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Copy_Abstraction_Abstraction_Shape_CN" name="Copy (Abstraction_Shape_CN)" hint="Abstraction_Shape_CN">
+    <iconEntry xmi:id="_BFuCsTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Copy.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Copy_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DeriveReqt_Abstraction_Abstraction_Edge" identifier="org.eclipse.papyrus.sysmldi.DeriveReqt_Abstraction_Abstraction_Edge" name="DeriveReqt (Abstraction_Edge)" hint="Abstraction_Edge">
+    <iconEntry xmi:id="_BFuCszvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DeriveReqt.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DeriveReqt_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DeriveReqt_Abstraction_Abstraction_Shape" identifier="org.eclipse.papyrus.sysmldi.DeriveReqt_Abstraction_Abstraction_Shape" name="DeriveReqt (Abstraction_Shape)" hint="Abstraction_Shape">
+    <iconEntry xmi:id="_BFuCtTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DeriveReqt.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DeriveReqt_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DeriveReqt_Abstraction_Abstraction_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.DeriveReqt_Abstraction_Abstraction_Shape_CN" name="DeriveReqt (Abstraction_Shape_CN)" hint="Abstraction_Shape_CN">
+    <iconEntry xmi:id="_BFuCtzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DeriveReqt.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DeriveReqt_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Discrete_Parameter_Parameter_ParameterLabel" identifier="org.eclipse.papyrus.sysmldi.Discrete_Parameter_Parameter_ParameterLabel" name="Discrete (Parameter_ParameterLabel)" hint="Parameter_ParameterLabel">
+    <iconEntry xmi:id="_BFupoTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Discrete.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Discrete_Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_ParameterLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Discrete_Parameter_Parameter_Shape" identifier="org.eclipse.papyrus.sysmldi.Discrete_Parameter_Parameter_Shape" name="Discrete (Parameter_Shape)" hint="Parameter_Shape">
+    <iconEntry xmi:id="_BFupozvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Discrete.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Discrete_Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_AttributeLabel" name="DistributedProperty (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFuppTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_ClassAttributeLabel" name="DistributedProperty (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFuppzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_ComponentAttributeLabel" name="DistributedProperty (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFupqTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_DataTypeAttributeLabel" name="DistributedProperty (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFupqzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_Edge" name="DistributedProperty (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFvQsTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_InterfaceAttributeLabel" name="DistributedProperty (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFvQszvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_PrimitiveTypeAttributeLabel" name="DistributedProperty (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFvQtTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_Shape" name="DistributedProperty (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFvQtzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_Shape_CN" name="DistributedProperty (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFvQuTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.DistributedProperty_Property_SignalAttributeLabel" name="DistributedProperty (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFvQuzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/DistributedProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.DistributedProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ElementGroup_Comment_Shape" identifier="org.eclipse.papyrus.sysmldi.ElementGroup_Comment_Shape" name="ElementGroup (Comment_Shape)" hint="Comment_Shape">
+    <iconEntry xmi:id="_BFvQvTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ElementGroup.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ElementGroup"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Comment_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ElementGroup_Comment_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.ElementGroup_Comment_Shape_CN" name="ElementGroup (Comment_Shape_CN)" hint="Comment_Shape_CN">
+    <iconEntry xmi:id="_BFvQvzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ElementGroup.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ElementGroup"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Comment_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_AttributeLabel" name="EndPathMultiplicity (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFvQwTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_ClassAttributeLabel" name="EndPathMultiplicity (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFvQwzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_ComponentAttributeLabel" name="EndPathMultiplicity (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFvQxTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_DataTypeAttributeLabel" name="EndPathMultiplicity (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFvQxzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_Edge" name="EndPathMultiplicity (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFvQyTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_InterfaceAttributeLabel" name="EndPathMultiplicity (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFvQyzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_PrimitiveTypeAttributeLabel" name="EndPathMultiplicity (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFvQzTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_Shape" name="EndPathMultiplicity (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFvQzzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_Shape_CN" name="EndPathMultiplicity (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFvQ0TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.EndPathMultiplicity_Property_SignalAttributeLabel" name="EndPathMultiplicity (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFvQ0zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/EndPathMultiplicity.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.EndPathMultiplicity"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Expose_Dependency_BranchEdge" identifier="org.eclipse.papyrus.sysmldi.Expose_Dependency_BranchEdge" name="Expose (Dependency_BranchEdge)" hint="Dependency_BranchEdge">
+    <iconEntry xmi:id="_BFv3wDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Expose.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Expose"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Dependency_BranchEdge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Expose_Dependency_Edge" identifier="org.eclipse.papyrus.sysmldi.Expose_Dependency_Edge" name="Expose (Dependency_Edge)" hint="Dependency_Edge">
+    <iconEntry xmi:id="_BFv3wjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Expose.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Expose"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Dependency_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Expose_Dependency_Shape" identifier="org.eclipse.papyrus.sysmldi.Expose_Dependency_Shape" name="Expose (Dependency_Shape)" hint="Dependency_Shape">
+    <iconEntry xmi:id="_BFv3xDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Expose.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Expose"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Dependency_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Expose_Dependency_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Expose_Dependency_Shape_CN" name="Expose (Dependency_Shape_CN)" hint="Dependency_Shape_CN">
+    <iconEntry xmi:id="_BFv3xjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Expose.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Expose"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Dependency_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_AttributeLabel" name="FlowPort (Port_AttributeLabel)" hint="Port_AttributeLabel">
+    <iconEntry xmi:id="_BFv3yDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_BehaviorEdge" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_BehaviorEdge" name="FlowPort (Port_BehaviorEdge)" hint="Port_BehaviorEdge">
+    <iconEntry xmi:id="_BFv3yjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_BehaviorEdge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_BehaviorShape" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_BehaviorShape" name="FlowPort (Port_BehaviorShape)" hint="Port_BehaviorShape">
+    <iconEntry xmi:id="_BFv3zDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_BehaviorShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_ClassAttributeLabel" name="FlowPort (Port_ClassAttributeLabel)" hint="Port_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFv3zjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_ComponentAttributeLabel" name="FlowPort (Port_ComponentAttributeLabel)" hint="Port_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFv30DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_DataTypeAttributeLabel" name="FlowPort (Port_DataTypeAttributeLabel)" hint="Port_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFv30jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_Edge" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_Edge" name="FlowPort (Port_Edge)" hint="Port_Edge">
+    <iconEntry xmi:id="_BFv31DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_InterfaceAttributeLabel" name="FlowPort (Port_InterfaceAttributeLabel)" hint="Port_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFv31jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_PrimitiveTypeAttributeLabel" name="FlowPort (Port_PrimitiveTypeAttributeLabel)" hint="Port_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFv32DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_Shape" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_Shape" name="FlowPort (Port_Shape)" hint="Port_Shape">
+    <iconEntry xmi:id="_BFv32jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_Shape_CN" name="FlowPort (Port_Shape_CN)" hint="Port_Shape_CN">
+    <iconEntry xmi:id="_BFv33DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowPort_Port_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowPort_Port_SignalAttributeLabel" name="FlowPort (Port_SignalAttributeLabel)" hint="Port_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFv33jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowPort_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_AttributeLabel" name="FlowProperty (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFv34DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_ClassAttributeLabel" name="FlowProperty (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFv34jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_ComponentAttributeLabel" name="FlowProperty (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFwe0TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_DataTypeAttributeLabel" name="FlowProperty (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFwe0zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_Edge" name="FlowProperty (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFwe1TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_InterfaceAttributeLabel" name="FlowProperty (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFwe1zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_PrimitiveTypeAttributeLabel" name="FlowProperty (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFwe2TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_Shape" name="FlowProperty (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFwe2zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_Shape_CN" name="FlowProperty (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFwe3TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowProperty_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FlowProperty_Property_SignalAttributeLabel" name="FlowProperty (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFwe3zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowProperty_IN.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ClassNestedClassifierLabel" name="FlowSpecification (Interface_ClassNestedClassifierLabel)" hint="Interface_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BFwe4TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ClassifierShape" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ClassifierShape" name="FlowSpecification (Interface_ClassifierShape)" hint="Interface_ClassifierShape">
+    <iconEntry xmi:id="_BFwe4zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_ClassifierShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ClassifierShape_CN" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ClassifierShape_CN" name="FlowSpecification (Interface_ClassifierShape_CN)" hint="Interface_ClassifierShape_CN">
+    <iconEntry xmi:id="_BFwe5TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_ClassifierShape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_ComponentNestedClassifierLabel" name="FlowSpecification (Interface_ComponentNestedClassifierLabel)" hint="Interface_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BFwe5zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_InterfaceNestedClassifierLabel" name="FlowSpecification (Interface_InterfaceNestedClassifierLabel)" hint="Interface_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BFwe6TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_NestedClassifierLabel" name="FlowSpecification (Interface_NestedClassifierLabel)" hint="Interface_NestedClassifierLabel">
+    <iconEntry xmi:id="_BFwe6zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_Shape" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_Shape" name="FlowSpecification (Interface_Shape)" hint="Interface_Shape">
+    <iconEntry xmi:id="_BFwe7TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.FlowSpecification_Interface_Shape_CN" name="FlowSpecification (Interface_Shape_CN)" hint="Interface_Shape_CN">
+    <iconEntry xmi:id="_BFwe7zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FlowSpecification.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FlowSpecification"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Interface_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_AttributeLabel" name="FullPort (Port_AttributeLabel)" hint="Port_AttributeLabel">
+    <iconEntry xmi:id="_BFwe8TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_BehaviorEdge" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_BehaviorEdge" name="FullPort (Port_BehaviorEdge)" hint="Port_BehaviorEdge">
+    <iconEntry xmi:id="_BFwe8zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_BehaviorEdge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_BehaviorShape" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_BehaviorShape" name="FullPort (Port_BehaviorShape)" hint="Port_BehaviorShape">
+    <iconEntry xmi:id="_BFwe9TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_BehaviorShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_ClassAttributeLabel" name="FullPort (Port_ClassAttributeLabel)" hint="Port_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFxF4DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_ComponentAttributeLabel" name="FullPort (Port_ComponentAttributeLabel)" hint="Port_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFxF4jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_DataTypeAttributeLabel" name="FullPort (Port_DataTypeAttributeLabel)" hint="Port_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFxF5DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_Edge" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_Edge" name="FullPort (Port_Edge)" hint="Port_Edge">
+    <iconEntry xmi:id="_BFxF5jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_InterfaceAttributeLabel" name="FullPort (Port_InterfaceAttributeLabel)" hint="Port_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFxF6DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_PrimitiveTypeAttributeLabel" name="FullPort (Port_PrimitiveTypeAttributeLabel)" hint="Port_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFxF6jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_Shape" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_Shape" name="FullPort (Port_Shape)" hint="Port_Shape">
+    <iconEntry xmi:id="_BFxF7DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_Shape_CN" name="FullPort (Port_Shape_CN)" hint="Port_Shape_CN">
+    <iconEntry xmi:id="_BFxF7jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.FullPort_Port_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.FullPort_Port_SignalAttributeLabel" name="FullPort (Port_SignalAttributeLabel)" hint="Port_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFxF8DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/FullPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.FullPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_ClassNestedClassifierLabel" name="InterfaceBlock (Class_ClassNestedClassifierLabel)" hint="Class_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BFxF8jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_ComponentNestedClassifierLabel" name="InterfaceBlock (Class_ComponentNestedClassifierLabel)" hint="Class_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BFxF9DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_InterfaceNestedClassifierLabel" name="InterfaceBlock (Class_InterfaceNestedClassifierLabel)" hint="Class_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BFxF9jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_MetaclassShape" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_MetaclassShape" name="InterfaceBlock (Class_MetaclassShape)" hint="Class_MetaclassShape">
+    <iconEntry xmi:id="_BFxF-DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_MetaclassShape_CN" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_MetaclassShape_CN" name="InterfaceBlock (Class_MetaclassShape_CN)" hint="Class_MetaclassShape_CN">
+    <iconEntry xmi:id="_BFxF-jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_NestedClassifierLabel" name="InterfaceBlock (Class_NestedClassifierLabel)" hint="Class_NestedClassifierLabel">
+    <iconEntry xmi:id="_BFxF_DvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_Shape" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_Shape" name="InterfaceBlock (Class_Shape)" hint="Class_Shape">
+    <iconEntry xmi:id="_BFxF_jvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.InterfaceBlock_Class_Shape_CN" name="InterfaceBlock (Class_Shape_CN)" hint="Class_Shape_CN">
+    <iconEntry xmi:id="_BFxGADvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/InterfaceBlock.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.InterfaceBlock"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ItemFlow_InformationFlow_Edge" identifier="org.eclipse.papyrus.sysmldi.ItemFlow_InformationFlow_Edge" name="ItemFlow" hint="InformationFlow_Edge">
+    <iconEntry xmi:id="_BFxGAjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ItemFlow.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ItemFlow"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.InformationFlow_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Optional_Parameter_ParameterLabel" identifier="org.eclipse.papyrus.sysmldi.Optional_Parameter_ParameterLabel" name="Optional (Parameter_ParameterLabel)" hint="Parameter_ParameterLabel">
+    <iconEntry xmi:id="_BFxGBDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Optional.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Optional"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_ParameterLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Optional_Parameter_Shape" identifier="org.eclipse.papyrus.sysmldi.Optional_Parameter_Shape" name="Optional (Parameter_Shape)" hint="Parameter_Shape">
+    <iconEntry xmi:id="_BFxGBjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Optional.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Optional"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_AttributeLabel" name="ParticipantProperty (Property_AttributeLabel)" hint="Property_AttributeLabel">
+    <iconEntry xmi:id="_BFxs8TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_ClassAttributeLabel" name="ParticipantProperty (Property_ClassAttributeLabel)" hint="Property_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFxs8zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_ComponentAttributeLabel" name="ParticipantProperty (Property_ComponentAttributeLabel)" hint="Property_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFxs9TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_DataTypeAttributeLabel" name="ParticipantProperty (Property_DataTypeAttributeLabel)" hint="Property_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFxs9zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_Edge" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_Edge" name="ParticipantProperty (Property_Edge)" hint="Property_Edge">
+    <iconEntry xmi:id="_BFxs-TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_InterfaceAttributeLabel" name="ParticipantProperty (Property_InterfaceAttributeLabel)" hint="Property_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFxs-zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_PrimitiveTypeAttributeLabel" name="ParticipantProperty (Property_PrimitiveTypeAttributeLabel)" hint="Property_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFxs_TvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_Shape" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_Shape" name="ParticipantProperty (Property_Shape)" hint="Property_Shape">
+    <iconEntry xmi:id="_BFxs_zvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_Shape_CN" name="ParticipantProperty (Property_Shape_CN)" hint="Property_Shape_CN">
+    <iconEntry xmi:id="_BFxtATvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ParticipantProperty_Property_SignalAttributeLabel" name="ParticipantProperty (Property_SignalAttributeLabel)" hint="Property_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFxtAzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ParticipantProperty.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ParticipantProperty"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Property_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Problem_Comment_Shape" identifier="org.eclipse.papyrus.sysmldi.Problem_Comment_Shape" name="Problem (Comment_Shape)" hint="Comment_Shape">
+    <iconEntry xmi:id="_BFxtBTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Problem.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Problem"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Comment_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Problem_Comment_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Problem_Comment_Shape_CN" name="Problem (Comment_Shape_CN)" hint="Comment_Shape_CN">
+    <iconEntry xmi:id="_BFxtBzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Problem.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Problem"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Comment_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.PropertySpecificType_Classifier_SubjectShape" identifier="org.eclipse.papyrus.sysmldi.PropertySpecificType_Classifier_SubjectShape" name="PropertySpecificType" hint="Classifier_SubjectShape">
+    <iconEntry xmi:id="_BFxtCTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/PropertySpecificType.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.PropertySpecificType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Classifier_SubjectShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_AttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_AttributeLabel" name="ProxyPort (Port_AttributeLabel)" hint="Port_AttributeLabel">
+    <iconEntry xmi:id="_BFxtCzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_AttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_BehaviorEdge" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_BehaviorEdge" name="ProxyPort (Port_BehaviorEdge)" hint="Port_BehaviorEdge">
+    <iconEntry xmi:id="_BFxtDTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_BehaviorEdge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_BehaviorShape" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_BehaviorShape" name="ProxyPort (Port_BehaviorShape)" hint="Port_BehaviorShape">
+    <iconEntry xmi:id="_BFxtDzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_BehaviorShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_ClassAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_ClassAttributeLabel" name="ProxyPort (Port_ClassAttributeLabel)" hint="Port_ClassAttributeLabel">
+    <iconEntry xmi:id="_BFxtETvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_ClassAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_ComponentAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_ComponentAttributeLabel" name="ProxyPort (Port_ComponentAttributeLabel)" hint="Port_ComponentAttributeLabel">
+    <iconEntry xmi:id="_BFyUADvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_ComponentAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_DataTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_DataTypeAttributeLabel" name="ProxyPort (Port_DataTypeAttributeLabel)" hint="Port_DataTypeAttributeLabel">
+    <iconEntry xmi:id="_BFyUAjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_DataTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_Edge" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_Edge" name="ProxyPort (Port_Edge)" hint="Port_Edge">
+    <iconEntry xmi:id="_BFyUBDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_InterfaceAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_InterfaceAttributeLabel" name="ProxyPort (Port_InterfaceAttributeLabel)" hint="Port_InterfaceAttributeLabel">
+    <iconEntry xmi:id="_BFyUBjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_InterfaceAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_PrimitiveTypeAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_PrimitiveTypeAttributeLabel" name="ProxyPort (Port_PrimitiveTypeAttributeLabel)" hint="Port_PrimitiveTypeAttributeLabel">
+    <iconEntry xmi:id="_BFyUCDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_PrimitiveTypeAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_Shape" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_Shape" name="ProxyPort (Port_Shape)" hint="Port_Shape">
+    <iconEntry xmi:id="_BFyUCjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_Shape_CN" name="ProxyPort (Port_Shape_CN)" hint="Port_Shape_CN">
+    <iconEntry xmi:id="_BFyUDDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ProxyPort_Port_SignalAttributeLabel" identifier="org.eclipse.papyrus.sysmldi.ProxyPort_Port_SignalAttributeLabel" name="ProxyPort (Port_SignalAttributeLabel)" hint="Port_SignalAttributeLabel">
+    <iconEntry xmi:id="_BFyUDjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ProxyPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ProxyPort"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Port_SignalAttributeLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Rate_Parameter_Parameter_ParameterLabel" identifier="org.eclipse.papyrus.sysmldi.Rate_Parameter_Parameter_ParameterLabel" name="Rate (Parameter_ParameterLabel)" hint="Parameter_ParameterLabel">
+    <iconEntry xmi:id="_BFyUEDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Rate.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Rate_Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_ParameterLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Rate_Parameter_Parameter_Shape" identifier="org.eclipse.papyrus.sysmldi.Rate_Parameter_Parameter_Shape" name="Rate (Parameter_Shape)" hint="Parameter_Shape">
+    <iconEntry xmi:id="_BFyUEjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Rate.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Rate_Parameter"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Parameter_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Rationale_Comment_Shape" identifier="org.eclipse.papyrus.sysmldi.Rationale_Comment_Shape" name="Rationale (Comment_Shape)" hint="Comment_Shape">
+    <iconEntry xmi:id="_BFyUFDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Rationale.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Rationale"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Comment_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Rationale_Comment_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Rationale_Comment_Shape_CN" name="Rationale (Comment_Shape_CN)" hint="Comment_Shape_CN">
+    <iconEntry xmi:id="_BFyUFjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Rationale.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Rationale"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Comment_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Refine_Abstraction_Abstraction_Edge" identifier="org.eclipse.papyrus.sysmldi.Refine_Abstraction_Abstraction_Edge" name="Refine (Abstraction_Edge)" hint="Abstraction_Edge">
+    <iconEntry xmi:id="_BFyUGDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Refine.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Refine_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Refine_Abstraction_Abstraction_Shape" identifier="org.eclipse.papyrus.sysmldi.Refine_Abstraction_Abstraction_Shape" name="Refine (Abstraction_Shape)" hint="Abstraction_Shape">
+    <iconEntry xmi:id="_BFyUGjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Refine.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Refine_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Refine_Abstraction_Abstraction_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Refine_Abstraction_Abstraction_Shape_CN" name="Refine (Abstraction_Shape_CN)" hint="Abstraction_Shape_CN">
+    <iconEntry xmi:id="_BFyUHDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Refine.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Refine_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_ClassNestedClassifierLabel" name="Requirement (Class_ClassNestedClassifierLabel)" hint="Class_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BFyUHjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_ComponentNestedClassifierLabel" name="Requirement (Class_ComponentNestedClassifierLabel)" hint="Class_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BFyUIDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_InterfaceNestedClassifierLabel" name="Requirement (Class_InterfaceNestedClassifierLabel)" hint="Class_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BFyUIjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_MetaclassShape" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_MetaclassShape" name="Requirement (Class_MetaclassShape)" hint="Class_MetaclassShape">
+    <iconEntry xmi:id="_BFyUJDvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_MetaclassShape_CN" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_MetaclassShape_CN" name="Requirement (Class_MetaclassShape_CN)" hint="Class_MetaclassShape_CN">
+    <iconEntry xmi:id="_BFyUJjvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_NestedClassifierLabel" name="Requirement (Class_NestedClassifierLabel)" hint="Class_NestedClassifierLabel">
+    <iconEntry xmi:id="_BFy7ETvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_Shape" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_Shape" name="Requirement (Class_Shape)" hint="Class_Shape">
+    <iconEntry xmi:id="_BFy7EzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Requirement_Class_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Requirement_Class_Shape_CN" name="Requirement (Class_Shape_CN)" hint="Class_Shape_CN">
+    <iconEntry xmi:id="_BFy7FTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Requirement.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Requirement"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Satisfy_Abstraction_Abstraction_Edge" identifier="org.eclipse.papyrus.sysmldi.Satisfy_Abstraction_Abstraction_Edge" name="Satisfy (Abstraction_Edge)" hint="Abstraction_Edge">
+    <iconEntry xmi:id="_BFy7FzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Satisfy.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Satisfy_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Satisfy_Abstraction_Abstraction_Shape" identifier="org.eclipse.papyrus.sysmldi.Satisfy_Abstraction_Abstraction_Shape" name="Satisfy (Abstraction_Shape)" hint="Abstraction_Shape">
+    <iconEntry xmi:id="_BFy7GTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Satisfy.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Satisfy_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Satisfy_Abstraction_Abstraction_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Satisfy_Abstraction_Abstraction_Shape_CN" name="Satisfy (Abstraction_Shape_CN)" hint="Abstraction_Shape_CN">
+    <iconEntry xmi:id="_BFy7GzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Satisfy.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Satisfy_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Stakeholder_Classifier_SubjectShape" identifier="org.eclipse.papyrus.sysmldi.Stakeholder_Classifier_SubjectShape" name="Stakeholder" hint="Classifier_SubjectShape">
+    <iconEntry xmi:id="_BFy7HTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Stakeholder.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Stakeholder"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Classifier_SubjectShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Behavior_Behavior_InternalBehaviorLabel" identifier="org.eclipse.papyrus.sysmldi.TestCase_Behavior_Behavior_InternalBehaviorLabel" name="TestCase Behavior" hint="Behavior_InternalBehaviorLabel">
+    <iconEntry xmi:id="_BFy7HzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TestCase.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TestCase_Behavior"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Behavior_InternalBehaviorLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_ClassOperationLabel" identifier="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_ClassOperationLabel" name="TestCase (Operation_ClassOperationLabel)" hint="Operation_ClassOperationLabel">
+    <iconEntry xmi:id="_BFy7ITvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TestCase.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TestCase_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_ClassOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_ComponentOperationLabel" identifier="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_ComponentOperationLabel" name="TestCase (Operation_ComponentOperationLabel)" hint="Operation_ComponentOperationLabel">
+    <iconEntry xmi:id="_BFy7IzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TestCase.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TestCase_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_ComponentOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_DataTypeOperationLabel" identifier="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_DataTypeOperationLabel" name="TestCase (Operation_DataTypeOperationLabel)" hint="Operation_DataTypeOperationLabel">
+    <iconEntry xmi:id="_BFy7JTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TestCase.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TestCase_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_DataTypeOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_InterfaceOperationLabel" identifier="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_InterfaceOperationLabel" name="TestCase (Operation_InterfaceOperationLabel)" hint="Operation_InterfaceOperationLabel">
+    <iconEntry xmi:id="_BFy7JzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TestCase.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TestCase_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_InterfaceOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_OperationLabel" identifier="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_OperationLabel" name="TestCase (Operation_OperationLabel)" hint="Operation_OperationLabel">
+    <iconEntry xmi:id="_BFy7KTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TestCase.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TestCase_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_OperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_PrimitiveTypeOperationLabel" identifier="org.eclipse.papyrus.sysmldi.TestCase_Operation_Operation_PrimitiveTypeOperationLabel" name="TestCase (Operation_PrimitiveTypeOperationLabel)" hint="Operation_PrimitiveTypeOperationLabel">
+    <iconEntry xmi:id="_BFy7KzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TestCase.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TestCase_Operation"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Operation_PrimitiveTypeOperationLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Trace_Abstraction_Abstraction_Edge" identifier="org.eclipse.papyrus.sysmldi.Trace_Abstraction_Abstraction_Edge" name="Trace (Abstraction_Edge)" hint="Abstraction_Edge">
+    <iconEntry xmi:id="_BFy7LTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Trace.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Trace_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Trace_Abstraction_Abstraction_Shape" identifier="org.eclipse.papyrus.sysmldi.Trace_Abstraction_Abstraction_Shape" name="Trace (Abstraction_Shape)" hint="Abstraction_Shape">
+    <iconEntry xmi:id="_BFy7LzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Trace.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Trace_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Trace_Abstraction_Abstraction_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Trace_Abstraction_Abstraction_Shape_CN" name="Trace (Abstraction_Shape_CN)" hint="Abstraction_Shape_CN">
+    <iconEntry xmi:id="_BFy7MTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Trace.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Trace_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.TriggerOnNestedPort_Trigger_Trigger_DeferrableTriggerLabel" identifier="org.eclipse.papyrus.sysmldi.TriggerOnNestedPort_Trigger_Trigger_DeferrableTriggerLabel" name="TriggerOnNestedPort Trigger" hint="Trigger_DeferrableTriggerLabel">
+    <iconEntry xmi:id="_BF0JMTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/TriggerOnNestedPort.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.TriggerOnNestedPort_Trigger"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Trigger_DeferrableTriggerLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ValueType_DataType_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ValueType_DataType_ClassNestedClassifierLabel" name="ValueType (DataType_ClassNestedClassifierLabel)" hint="DataType_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0JMzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ValueType.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ValueType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.DataType_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ValueType_DataType_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ValueType_DataType_ComponentNestedClassifierLabel" name="ValueType (DataType_ComponentNestedClassifierLabel)" hint="DataType_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0JNTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ValueType.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ValueType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.DataType_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ValueType_DataType_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ValueType_DataType_InterfaceNestedClassifierLabel" name="ValueType (DataType_InterfaceNestedClassifierLabel)" hint="DataType_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0JNzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ValueType.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ValueType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.DataType_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ValueType_DataType_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.ValueType_DataType_NestedClassifierLabel" name="ValueType (DataType_NestedClassifierLabel)" hint="DataType_NestedClassifierLabel">
+    <iconEntry xmi:id="_BF0JOTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ValueType.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ValueType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.DataType_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ValueType_DataType_Shape" identifier="org.eclipse.papyrus.sysmldi.ValueType_DataType_Shape" name="ValueType (DataType_Shape)" hint="DataType_Shape">
+    <iconEntry xmi:id="_BF0JOzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ValueType.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ValueType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.DataType_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.ValueType_DataType_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.ValueType_DataType_Shape_CN" name="ValueType (DataType_Shape_CN)" hint="DataType_Shape_CN">
+    <iconEntry xmi:id="_BF0JPTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/ValueType.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.ValueType"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.DataType_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Abstraction_Edge" identifier="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Abstraction_Edge" name="Verify (Abstraction_Edge)" hint="Abstraction_Edge">
+    <iconEntry xmi:id="_BF0JPzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Verify.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Verify_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Edge"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Abstraction_Shape" identifier="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Abstraction_Shape" name="Verify (Abstraction_Shape)" hint="Abstraction_Shape">
+    <iconEntry xmi:id="_BF0wQTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Verify.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Verify_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Abstraction_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Verify_Abstraction_Abstraction_Shape_CN" name="Verify (Abstraction_Shape_CN)" hint="Abstraction_Shape_CN">
+    <iconEntry xmi:id="_BF0wQzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Verify.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Verify_Abstraction"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Abstraction_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.View_Class_ClassNestedClassifierLabel" name="View (Class_ClassNestedClassifierLabel)" hint="Class_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wRTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.View_Class_ComponentNestedClassifierLabel" name="View (Class_ComponentNestedClassifierLabel)" hint="Class_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wRzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.View_Class_InterfaceNestedClassifierLabel" name="View (Class_InterfaceNestedClassifierLabel)" hint="Class_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wSTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_MetaclassShape" identifier="org.eclipse.papyrus.sysmldi.View_Class_MetaclassShape" name="View (Class_MetaclassShape)" hint="Class_MetaclassShape">
+    <iconEntry xmi:id="_BF0wSzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_MetaclassShape_CN" identifier="org.eclipse.papyrus.sysmldi.View_Class_MetaclassShape_CN" name="View (Class_MetaclassShape_CN)" hint="Class_MetaclassShape_CN">
+    <iconEntry xmi:id="_BF0wTTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.View_Class_NestedClassifierLabel" name="View (Class_NestedClassifierLabel)" hint="Class_NestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wTzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_Shape" identifier="org.eclipse.papyrus.sysmldi.View_Class_Shape" name="View (Class_Shape)" hint="Class_Shape">
+    <iconEntry xmi:id="_BF0wUTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.View_Class_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.View_Class_Shape_CN" name="View (Class_Shape_CN)" hint="Class_Shape_CN">
+    <iconEntry xmi:id="_BF0wUzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/View.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.View"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_ClassNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_ClassNestedClassifierLabel" name="Viewpoint (Class_ClassNestedClassifierLabel)" hint="Class_ClassNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wVTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ClassNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_ComponentNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_ComponentNestedClassifierLabel" name="Viewpoint (Class_ComponentNestedClassifierLabel)" hint="Class_ComponentNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wVzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_ComponentNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_InterfaceNestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_InterfaceNestedClassifierLabel" name="Viewpoint (Class_InterfaceNestedClassifierLabel)" hint="Class_InterfaceNestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wWTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_InterfaceNestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_MetaclassShape" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_MetaclassShape" name="Viewpoint (Class_MetaclassShape)" hint="Class_MetaclassShape">
+    <iconEntry xmi:id="_BF0wWzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_MetaclassShape_CN" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_MetaclassShape_CN" name="Viewpoint (Class_MetaclassShape_CN)" hint="Class_MetaclassShape_CN">
+    <iconEntry xmi:id="_BF0wXTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_MetaclassShape_CN"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_NestedClassifierLabel" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_NestedClassifierLabel" name="Viewpoint (Class_NestedClassifierLabel)" hint="Class_NestedClassifierLabel">
+    <iconEntry xmi:id="_BF0wXzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_NestedClassifierLabel"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_Shape" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_Shape" name="Viewpoint (Class_Shape)" hint="Class_Shape">
+    <iconEntry xmi:id="_BF0wYTvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape"/>
+  </elementTypeConfigurations>
+  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="org.eclipse.papyrus.sysmldi.Viewpoint_Class_Shape_CN" identifier="org.eclipse.papyrus.sysmldi.Viewpoint_Class_Shape_CN" name="Viewpoint (Class_Shape_CN)" hint="Class_Shape_CN">
+    <iconEntry xmi:id="_BF0wYzvNEeeIn_UJiGU5aQ" iconPath="/resources/icons/full/obj16/Viewpoint.gif" bundleId="org.eclipse.papyrus.sysml14.edit"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.sysml14.service.types/model/SysML14.elementtypesconfigurations#org.eclipse.papyrus.SysML14.Viewpoint"/>
+    <specializedTypes xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/umldi.elementtypesconfigurations#org.eclipse.papyrus.umldi.Class_Shape_CN"/>
+  </elementTypeConfigurations>
+</elementtypesconfigurations:ElementTypeSetConfiguration>
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/TestExpansionDiagram.elementtypesconfigurations b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/TestExpansionDiagram.elementtypesconfigurations
deleted file mode 100644
index c997b31..0000000
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/TestExpansionDiagram.elementtypesconfigurations
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="ASCII"?>

-<elementtypesconfigurations:ElementTypeSetConfiguration xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2" xmi:id="_rWI4YHPzEeSnGJwaJWHCSg" identifier="TestExpansionDiagram" name="TestExpansionDiagram" metamodelNsURI="http://www.eclipse.org/uml2/5.0.0/UML">

-  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="_rWNxVHPzEeSnGJwaJWHCSg" identifier="org.eclipse.papyrus.uml.diagram.testexpansion.Interface_Label" name="Interface" hint="Interface_Label">

-    <iconEntry xmi:id="_rWNxVXPzEeSnGJwaJWHCSg" iconPath="/icons/full/obj16/Interface.gif" bundleId="org.eclipse.uml2.uml.edit"/>

-    <specializedTypes xsi:type="elementtypesconfigurations:MetamodelTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/uml.elementtypesconfigurations#_ScuW2VYCEeS0WsAAtVmToA"/>

-  </elementTypeConfigurations>

-  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="_C-1XION1EeSPY_4fjIBntw" identifier="org.eclipse.papyrus.uml.diagram.testexpansion.Interface_BorderItem" name="Interface" hint="Interface_BorderItem">

-    <iconEntry xmi:id="_C-1XIeN1EeSPY_4fjIBntw" iconPath="/icons/full/obj16/Interface.gif" bundleId="org.eclipse.uml2.uml.edit"/>

-    <specializedTypes xsi:type="elementtypesconfigurations:MetamodelTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/uml.elementtypesconfigurations#_ScuW2VYCEeS0WsAAtVmToA"/>

-  </elementTypeConfigurations>

-  <elementTypeConfigurations xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration" xmi:id="_Tm5Y0PPMEeSh3rAaWaQzhQ" identifier="org.eclipse.papyrus.uml.diagram.testexpansion.Dependency_Link" name="Dependency" hint="Dependency_Link">

-    <iconEntry xmi:id="_Tm5Y0fPMEeSh3rAaWaQzhQ" iconPath="/icons/full/obj16/Interface.gif" bundleId="org.eclipse.uml2.uml.edit"/>

-    <specializedTypes xsi:type="elementtypesconfigurations:MetamodelTypeConfiguration" href="../../../plugin/org.eclipse.papyrus.uml.service.types/model/uml.elementtypesconfigurations#_SccqG1YCEeS0WsAAtVmToA"/>

-  </elementTypeConfigurations>

-</elementtypesconfigurations:ElementTypeSetConfiguration>

diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/output/AddBorderItem.xmi b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/output/AddBorderItem.xmi
deleted file mode 100644
index 4006e9b..0000000
--- a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/output/AddBorderItem.xmi
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<expansionmodel:DiagramExpansion xmlns:expansionmodel="http:///expansionmodel.ecore" xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ID="test AddBorderItem" xmi:id="_BOX98NnkEeSFtu511b-yaw" xmi:version="2.0">
-  <usages diagramType="Class Diagram" name="Add acomparment on class of papyrus" representations="//@usages.0/@gmftRepresentations.0">
-    <gmftRepresentations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ClassEditPart" name="Reuse representation of class of the class diagram" reusedID="Class_Shape" subRepresentations="//@libraries.0/@representations.0" viewFactory="org.eclipse.papyrus.infra.gmfdiag.common.utils.ClassifierViewFactory"/>
-  </usages>
-  <libraries name="library">
-    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.NestedInterfaceForClassEditPart" name="Interface as BorderItem" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xsi:type="expansionmodel:Representation">
-      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/TestExpansionDiagram.elementtypesconfigurations#_C-1XION1EeSPY_4fjIBntw" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
-    </representations>
-  </libraries>
-</expansionmodel:DiagramExpansion>
diff --git a/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/output/blockDefinitionDiagramConfig.expansionmodel b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/output/blockDefinitionDiagramConfig.expansionmodel
new file mode 100644
index 0000000..2722f57
--- /dev/null
+++ b/migrationelementtype/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/output/blockDefinitionDiagramConfig.expansionmodel
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<expansionmodel:DiagramExpansion xmlns:expansionmodel="http:///expansionmodel.ecore" xmlns:elementtypesconfigurations="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ID="SysML 1.4 BDD" xmi:id="_BOX98NnkEeSFtu511b-yaw" xmi:version="2.0">
+  <usages diagramType="SysML 1.4 Block Definition" name="SysML 1.4 BDD Context" representations="_rC19oNnoEeSqwOe5_frWm2 _CvN1kFVqEeW77p7V_ZuW3Q _dq31kGdDEeW5JrLha2pcnA" xmi:id="_rC19oNnoEeSqwOe5_frWm1">
+    <gmftRepresentations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ClassEditPart" inducedRepresentations="_rC19oNnoEeSqwOe5_frWm6 _CvPDslVqEeW77p7V_ZuW3Q _rC19oNnoEeSqwOe5_frWm7 _CvPDs1VqEeW77p7V_ZuW3Q _CvPDtFVqEeW77p7V_ZuW3Q _CvPDtVVqEeW77p7V_ZuW3Q _CSMSEGFBEeWbSMDuSXx8SQ _59LCcACiEeabH6-I0dvpUQ" name="Block based on Class representation of class diagram" reusedID="Class_Shape" subRepresentations="_CvN1kVVqEeW77p7V_ZuW3Q _CvOcoVVqEeW77p7V_ZuW3Q _CvOcolVqEeW77p7V_ZuW3Q _CvOco1VqEeW77p7V_ZuW3Q" viewFactory="org.eclipse.papyrus.sysml14.diagram.blockdefinition.internal.factory.BlockClassifierViewFactory" xmi:id="_rC19oNnoEeSqwOe5_frWm2"/>
+    <gmftRepresentations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InterfaceEditPart" graphicalElementType="" inducedRepresentations="_CSMSEGFBEeWbSMDuSXx8SQ" name="FlowSpecification based on Interface representation of class diagram" reusedID="Interface_Shape" subRepresentations="_CvN1kVVqEeW77p7V_ZuW3Q" viewFactory="org.eclipse.papyrus.sysml14.diagram.blockdefinition.internal.factory.FlowSpecificationClassifierViewFactory" xmi:id="_dq31kGdDEeW5JrLha2pcnA"/>
+  </usages>
+  <libraries name="Independent Representations" xmi:id="_rC19oNnoEeSqwOe5_frWm3">
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PropertyForClassEditPart" name="Flow Port As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_rC19oNnoEeSqwOe5_frWm4" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.FlowPort_Label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DependencyEditPart" name="Verify Link" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ConnectorViewFactory" xmi:id="_CvN1kFVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Verify_Abstraction_Verify_Link" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations inducedRepresentations="_CvPDsVVqEeW77p7V_ZuW3Q _CvPDsFVqEeW77p7V_ZuW3Q" name="Operation Border Item" viewFactory="org.eclipse.papyrus.sysml14.diagram.blockdefinition.internal.factory.OperationPortViewFactory" xmi:id="_CvN1kVVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_EoAOIN0DEeSiOexlyH3Ifw"/>
+    <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi." xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.common.editparts.EditableLabelForNodeEditPart" name="Constraint As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_CvOcoFVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14CompositeDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Constraint_Label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations inducedRepresentations="_CvPDsVVqEeW77p7V_ZuW3Q" name="Class Port" viewFactory="org.eclipse.papyrus.sysml14.diagram.blockdefinition.internal.factory.PortViewFactory" xmi:id="_CvOcoVVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_EoAOIN0DEeSiOexlyH3Ifw"/>
+    <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Class_Port" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations inducedRepresentations="_CvPDsVVqEeW77p7V_ZuW3Q" name="Class ProxyPort" viewFactory="org.eclipse.papyrus.sysml14.diagram.blockdefinition.internal.factory.PortViewFactory" xmi:id="_CvOcolVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_EoAOIN0DEeSiOexlyH3Ifw"/>
+    <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Class_ProxyPort" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations inducedRepresentations="_CvPDsVVqEeW77p7V_ZuW3Q" name="Class FullPort" viewFactory="org.eclipse.papyrus.sysml14.diagram.blockdefinition.internal.factory.PortViewFactory" xmi:id="_CvOco1VqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_EoAOIN0DEeSiOexlyH3Ifw"/>
+    <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Class_FullPort" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PropertyForClassEditPart" name="ProxyPort As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_CvOcpFVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.ProxyPort_Label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PropertyForClassEditPart" name="FullPort As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_CvOcpVVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.FullPort_Label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PropertyForClassEditPart" name="References As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_CvOcplVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Reference_label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PropertyForClassEditPart" name="Parts As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_SZt_kFVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Part_label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PropertyForClassEditPart" name="FlowProperty As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_y-W7oGFAEeWbSMDuSXx8SQ" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.FlowProperty_label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+    <representations editPartQualifiedName="org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PropertyForClassEditPart" name="Parameters As Label" viewFactory="org.eclipse.gmf.runtime.diagram.ui.view.factories.optimal.ShapeViewFactory" xmi:id="_vBCFAACiEeabH6-I0dvpUQ" xsi:type="expansionmodel:Representation">
+      <graphicalElementTypeRef href="platform:/plugin/org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel/src/test/resources/input/SysML14ClassDiagram-extension.elementtypesconfigurations#org.eclipse.papyrus.sysmldi.Parameter_label" xsi:type="elementtypesconfigurations:SpecializationTypeConfiguration"/>
+    </representations>
+  </libraries>
+  <libraries name="Independant Compartments" xmi:id="_rC19oNnoEeSqwOe5_frWm5">
+    <representations children="_rC19oNnoEeSqwOe5_frWm4" hint="Flow Ports" name="FlowPort Compartment" xmi:id="_rC19oNnoEeSqwOe5_frWm6" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+    <representations children="_SZt_kFVqEeW77p7V_ZuW3Q" editPartQualifiedName="" hint="Parts" name="Parts Compartment" xmi:id="_rC19oNnoEeSqwOe5_frWm7" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+    <representations children="_vBCFAACiEeabH6-I0dvpUQ" hint="Parameters" name="Parameters Compartment" xmi:id="_59LCcACiEeabH6-I0dvpUQ" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+    <representations editPartQualifiedName="" hint="Operation_BorderItem_Stereotype_Label" name="Stereotype Label representation for BorderItem" xmi:id="_CvPDsFVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_dG-hoN0HEeSfTfTnKh2G1Q"/>
+    </representations>
+    <representations editPartQualifiedName="" hint="Operation_BorderItem_Label" name=" Name Label representation for BorderItem" xmi:id="_CvPDsVVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_dG-hoN0HEeSfTfTnKh2G1Q"/>
+    </representations>
+    <representations children="_CvOcoFVqEeW77p7V_ZuW3Q" hint="constraints" name="Constraint Compartment" xmi:id="_CvPDslVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+    <representations children="_CvOcpFVqEeW77p7V_ZuW3Q" hint="Proxy Ports" name="ProxyPort Compartment" xmi:id="_CvPDs1VqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+    <representations children="_CvOcpVVqEeW77p7V_ZuW3Q" hint="Full Ports" name="FullPort Compartment" xmi:id="_CvPDtFVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+    <representations children="_CvOcplVqEeW77p7V_ZuW3Q" hint="References" name="References Compartment" xmi:id="_CvPDtVVqEeW77p7V_ZuW3Q" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+    <representations children="_y-W7oGFAEeWbSMDuSXx8SQ" hint="Flow Properties" name="FlowProperties Compartment" xmi:id="_CSMSEGFBEeWbSMDuSXx8SQ" xsi:type="expansionmodel:InducedRepresentation">
+      <kind href="platform:/plugin/org.eclipse.papyrus.uml.diagram.common/model/UMLRepresentationKind.xmi#_vbTKYN0DEeS-X4lB2Ut-YA"/>
+    </representations>
+  </libraries>
+</expansionmodel:DiagramExpansion>
diff --git a/migrationelementtype/pom.xml b/migrationelementtype/pom.xml
index 3576a75..cae3894 100644
--- a/migrationelementtype/pom.xml
+++ b/migrationelementtype/pom.xml
@@ -66,9 +66,16 @@
 
 			<!-- https://mvnrepository.com/artifact/xerces/xercesImpl -->
 			<dependency>
-			    <groupId>xerces</groupId>
-			    <artifactId>xercesImpl</artifactId>
-			    <version>2.5.0</version>
+				<groupId>xerces</groupId>
+				<artifactId>xercesImpl</artifactId>
+				<version>2.5.0</version>
+			</dependency>
+
+			<!-- https://mvnrepository.com/artifact/log4j/log4j -->
+			<dependency>
+				<groupId>log4j</groupId>
+				<artifactId>log4j</artifactId>
+				<version>1.2.17</version>
 			</dependency>
 
 			<dependency>
@@ -96,8 +103,8 @@
 
 		<!-- https://mvnrepository.com/artifact/xerces/xercesImpl -->
 		<dependency>
-		    <groupId>xerces</groupId>
-		    <artifactId>xercesImpl</artifactId>
+			<groupId>xerces</groupId>
+			<artifactId>xercesImpl</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>org.junit.jupiter</groupId>
@@ -127,7 +134,7 @@
 					<encoding>UTF-8</encoding>
 				</configuration>
 			</plugin>
-			
+
 			<plugin>
 				<artifactId>maven-surefire-plugin</artifactId>
 				<version>2.19.1</version>