mbeddr ecore import Follow
I tried to import UML_21.ecore:https://drive.google.com/open?id=1cUgV9RjiGgeAJSD7G3eGUU79WKbOZ9YC using mbeddr ecore metamodel import. I got the following errors
Apart from that not all the primitive and non-primitive types are imported correctly.
Please sign in to leave a comment.
First Error solved by importing Ecore.ecore metamodel:https://drive.google.com/open?id=1JCgU-yh_fk7544gwVAQolN04Fi1g05FQ. During the import eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EModelElement" was missing. Second problem occurs when Behavior interface tries to extend non abstract class Class. So, I renamed Behavior interface to i_Behavior and created Behavior concept that implements i_Behavior and extends Class. Also after that I refactored usages from i_Behavior to Behavior, but I am not sure whether it is right. The last problem is still there, even after importing Ecore.ecore metamodel it cannot recognise Types like EBoolean so I just added types manually.