I use a transformation engine to create an ECORE meta-model at runtime and I wonder how we can register that meta-model with EMF so that it can recognize the meta-model? Best regards.
|
feedback
|
|
If you have the code generated by your metamodel:
(here for the "genmodel" metamodel) If you only have the ".ecore" file:
You can find a bit more about this code here with the method named "registerEcorePackages", used to register ".ecore" file in the workspace (with their workspace fullpath) in our custom package registry. If you want to register your metamodel in EMF global package registry, replace resourceSet.getPackageRegistry() by EPackage.Registry.INSTANCE. Regards, Stephane Begaudeau | ||||
|
feedback
|