[SBVR] load sbvr vocabulary from .xmi file [message #602764] |
Thu, 17 December 2009 11:39 |
Eclipse User |
|
|
|
Hi.
My name is Giuseppe.
I'm building an application to load sbvr vocabulary from .xmi file.
I'm using .xmi file provided in this post http://dev.eclipse.org/mhonarc/lists/mdt-sbvr.dev/msg00093.h tml
The author of the post wrote "The CMOF model for SBVR exchange document XMI format is also checked into org.eclipse.sbvr.xmi"
I'm looking in the project org.eclipse.sbvr.xmi and the class org.eclipse.sbvr.xmi.util.SBVRXMISwitch (I suppose that it is the class I nedd), but I have no idea about it's functioning or if it is the the class I need.
At the moment I'm able to load .sbvr file provided in the post I linked and to do this I use this code:
ResourceSet resourceSet = new ResourceSetImpl();
resourceSet.getResourceFactoryRegistry().getExtensionToFacto ryMap().put
(Resource.Factory.Registry.DEFAULT_EXTENSION, new XMIResourceFactoryImpl());
resourceSet.getPackageRegistry().put(MrvPackage.eNS_URI, MrvPackage.eINSTANCE);
File file = new File("myfile.sbvr");
URI uri = file.isFile() ? URI.createFileURI(file.getAbsolutePath()): URI.createURI(args[0]);
Resource resource = resourceSet.getResource(uri, true);
EList<EObject> myObjectList = resource.getContents();
Regards,
Giuseppe Ciulla
|
|
|
Powered by
FUDForum. Page generated in 0.05196 seconds