Skip to main content



      Home
Home » Modeling » MDT (Model Development Tools) » [SBVR] load sbvr vocabulary from .xmi file
[SBVR] load sbvr vocabulary from .xmi file [message #602764] Thu, 17 December 2009 06:39
Eclipse UserFriend
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
Previous Topic:[SBVR] load sbvr vocabulary from .xmi file
Next Topic:Sphinx proposal
Goto Forum:
  


Current Time: Fri Nov 07 05:25:24 EST 2025

Powered by FUDForum. Page generated in 0.03230 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top