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.

link|improve this question
feedback

1 Answer

If you have the code generated by your metamodel:

resourceSet.getPackageRegistry().put(org.eclipse.emf.codegen.ecore.genmodel.GenModelPackage.eINSTANCE.getNsURI(), org.eclipse.emf.codegen.ecore.genmodel.GenModelPackage.eINSTANCE);

(here for the "genmodel" metamodel)

If you only have the ".ecore" file:

ResourceSet rs = new ResourceSetImpl();
Resource r = rs.getResource(uriOfYourModel, true);
EObject eObject = r.getContent().get(0);
if (eObject instanceof EPackage) {
    EPackage p = (EPackage)eObject;
    rs.getPackageRegistry().put(p.getNsURI(), p);
}

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

link|improve this answer
Thank you so much for your answer Stephane :) – Tu Ton Feb 22 at 12:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.