Home » Modeling » EMF » [EMF compare] ExampleLauncher problem
[EMF compare] ExampleLauncher problem [message #646621] |
Wed, 29 December 2010 06:56  |
Eclipse User |
|
|
|
HELP
that dosn't work
code :
final EObject model1 = ModelUtils.load(new File(" C:\\pfe\\runtime-EclipseApplication(1)\\LibraryTest\\My1.lib rary "), resourceSet1);
Loading resources.
org.eclipse.emf.ecore.resource.Resource$IOWrappedException: Class 'Library' is not found or is abstract. (file:/C:/pfe/runtime-EclipseApplication(1)/LibraryTest/My1. library, 2, 19)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.handleErrors(XMLL oadImpl.java:83)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl. java:191)
at org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl.doLoad(XMLRes ourceImpl.java:180)
at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(Resour ceImpl.java:1494)
at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(Resour ceImpl.java:1282)
at org.eclipse.emf.compare.util.ModelUtils.load(ModelUtils.java :381)
at org.eclipse.emf.compare.util.ModelUtils.load(ModelUtils.java :278)
at org.eclipse.example.library.Test.main(Test.java:92)
Caused by: org.eclipse.emf.ecore.xmi.ClassNotFoundException: Class 'Library' is not found or is abstract. (file:/C:/pfe/runtime-EclipseApplication(1)/LibraryTest/My1. library, 2, 19)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObje ctFromFactory(XMLHandler.java:2244)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObje ctFromFactory(XMLHandler.java:2235)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createObjectByType (XMLHandler.java:1332)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createTopObject(XM LHandler.java:1468)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.processElement(XML Handler.java:1019)
at org.eclipse.emf.ecore.xmi.impl.XMIHandler.processElement(XMI Handler.java:83)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHa ndler.java:1001)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHa ndler.java:712)
at org.eclipse.emf.ecore.xmi.impl.XMIHandler.startElement(XMIHa ndler.java:169)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser .startElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator. startElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentS cannerImpl.scanStartElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerIm pl$ContentDispatcher.scanRootElementHook(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentS cannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentS cannerImpl.scanDocument(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuratio n.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuratio n.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(U nknown Source)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser .parse(Unknown Source)
at javax.xml.parsers.SAXParser.parse(Unknown Source)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl. java:181)
... 6 more
[Updated on: Thu, 30 December 2010 03:41] by Moderator
|
|
|
Re: [EMF compare] ExampleLauncher problem [message #646892 is a reply to message #646621] |
Sun, 02 January 2011 12:26   |
Eclipse User |
|
|
|
Hi,
this is not an EMF Compare specific problem! It's general handling of
EMF models.
The exception indicates that you are loading an instance of a metamodel
that has not been registered yet. The metamodel package with the
specified URI "...example.eclipse.org/Library" has to be registered
before loading its instances.
That means, you must have the plug-in installed that specifies the
Library metamodel Package and its generated model code. This plug-in
should also extend the "generated_packages" extension point in order to
get its metamodel package automatically registered.
You can also register it manually before loading its instances by
calling its EPackage instance using something like:
<code>
LibraryPackage.eINSTANCE;
</code>
Of course, the LibraryPackage class must be in your build-path (e.g.,
plug-in dependency) to do so.
Hope that helps!
Cheers,
Philip
On 2010-12-29 12:56, ST wrote:
> HELP that dosn't work code :
>
> final EObject model1 = ModelUtils.load(new File("
> C:\\pfe\\runtime-EclipseApplication(1)\\LibraryTest\\My1.lib rary "),
> resourceSet1);
>
>
>
>
>
> org.eclipse.emf.ecore.resource.Resource$IOWrappedException: Package with
> uri 'http://www.example.eclipse.org/Library' not found.
> (file:/C:/pfe/runtime-EclipseApplication(1)/LibraryTest/My1. library, 2,
> 73)
> at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.handleErrors(XMLL
> oadImpl.java:83)
> at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.
> java:191)
> at org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl.doLoad(XMLRes
> ourceImpl.java:180)
> at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(Resour
> ceImpl.java:1494)
> at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(Resour
> ceImpl.java:1282)
> at org.eclipse.emf.compare.util.ModelUtils.load(ModelUtils.java :381)
> at org.eclipse.emf.compare.util.ModelUtils.load(ModelUtils.java :278)
> at org.eclipse.example.library.Test.main(Test.java:92)
> Caused by: org.eclipse.emf.ecore.xmi.PackageNotFoundException: Package
> with uri 'http://www.example.eclipse.org/Library' not found.
> (file:/C:/pfe/runtime-EclipseApplication(1)/LibraryTest/My1. library, 2,
> 73)
> at org.eclipse.emf.ecore.xmi.impl.XMLHandler.getPackageForURI(X
> MLHandler.java:2591)
> at org.eclipse.emf.ecore.xmi.impl.XMLHandler.getFactoryForPrefi
> x(XMLHandler.java:2422)
> at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createObjectByType
> (XMLHandler.java:1299)
> at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createTopObject(XM
> LHandler.java:1468)
> at org.eclipse.emf.ecore.xmi.impl.XMLHandler.processElement(XML
> Handler.java:1019)
> at org.eclipse.emf.ecore.xmi.impl.XMIHandler.processElement(XMI
> Handler.java:83)
> at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHa
> ndler.java:1001)
> at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHa
> ndler.java:712)
> at org.eclipse.emf.ecore.xmi.impl.XMIHandler.startElement(XMIHa
> ndler.java:169)
> at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser
> .startElement(Unknown Source)
> at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.
> startElement(Unknown Source)
> at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentS
> cannerImpl.scanStartElement(Unknown Source)
> at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerIm
> pl$ContentDispatcher.scanRootElementHook(Unknown Source)
> at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentS
> cannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
> at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentS
> cannerImpl.scanDocument(Unknown Source)
> at com.sun.org.apache.xerces.internal.parsers.XML11Configuratio
> n.parse(Unknown Source)
> at com.sun.org.apache.xerces.internal.parsers.XML11Configuratio
> n.parse(Unknown Source)
> at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(U
> nknown Source)
> at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser
> .parse(Unknown Source)
> at javax.xml.parsers.SAXParser.parse(Unknown Source)
> at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.
> java:181)
> ... 6 more
>
|
|
| |
Re: [EMF compare] ExampleLauncher problem [message #990218 is a reply to message #646935] |
Tue, 11 December 2012 08:19   |
Eclipse User |
|
|
|
Hi,
Can you provide some more detailed solution to the problem you had?
I am trying to perform HOT ATL transformations, and I have the following similar error when trying to load a resource content from the InputStream (result of a model transformation):
org.eclipse.emf.ecore.resource.Resource$IOWrappedException: Class 'Module' is not found or is abstract. (file:///C:/Users/XX/workspace/myFile.xmi, 3, 59)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.handleErrors(XMLLoadImpl.java:83)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.java:191)
at org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl.doLoad(XMLResourceImpl.java:242)
at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(ResourceImpl.java:1511)
at fr.tpt.atl.hot.launcher.EModelCopyBackup.saveModels(EModelCopyBackup.java:257)
at fr.tpt.atl.hot.launcher.EModelCopyBackup.main(EModelCopyBackup.java:108)
Caused by: org.eclipse.emf.ecore.xmi.ClassNotFoundException: Class 'Module' is not found or is abstract. (file://myClass.xmi, 3, 59)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObjectFromFactory(XMLHandler.java:2244)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObjectFromFactory(XMLHandler.java:2235)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createObjectByType(XMLHandler.java:1332)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createTopObject(XMLHandler.java:1468)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.processElement(XMLHandler.java:1019)
at org.eclipse.emf.ecore.xmi.impl.XMIHandler.processElement(XMIHandler.java:87)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHandler.java:1001)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHandler.java:712)
at org.eclipse.emf.ecore.xmi.impl.XMIHandler.startElement(XMIHandler.java:169)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.parse(Unknown Source)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.java:181)
... 4 more
I run this in a standalone application, so I tried to register my metamodel manually before I will create an instance of it, in the following way:
resourceSet.getPackageRegistry().put("http://www.eclipse.org/gmt/2005/ATL", EcorePackage.eINSTANCE);
resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("ecore", new EcoreResourceFactoryImpl());
resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("xmi", new XMIResourceFactoryImpl());
Am I missing something? Can you provide some more details on how did you solve the problem?
Thank you in advance.
Greg
|
|
|
Re: [EMF compare] ExampleLauncher problem [message #990225 is a reply to message #990218] |
Tue, 11 December 2012 08:38   |
Eclipse User |
|
|
|
Greg,
What model does the class "Module" come from? Have you tried
registering that model, i.e.,
resourceSet.getPackageRegistry().put(XyxPackage.eNS_URI,
XyzPackage.eINSTANCE);
On 11/12/2012 2:19 PM, Greg L wrote:
> Hi,
>
> Can you provide some more detailed solution to the problem you had?
> I am trying to perform HOT ATL transformations, and I have the
> following similar error when trying to load a resource content from
> the InputStream (result of a model transformation):
>
> org.eclipse.emf.ecore.resource.Resource$IOWrappedException: Class
> 'Module' is not found or is abstract.
> (file:///C:/Users/XX/workspace/myFile.xmi, 3, 59)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.handleErrors(XMLLoadImpl.java:83)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.java:191)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl.doLoad(XMLResourceImpl.java:242)
> at
> org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(ResourceImpl.java:1511)
> at
> fr.tpt.atl.hot.launcher.EModelCopyBackup.saveModels(EModelCopyBackup.java:257)
> at
> fr.tpt.atl.hot.launcher.EModelCopyBackup.main(EModelCopyBackup.java:108)
> Caused by: org.eclipse.emf.ecore.xmi.ClassNotFoundException: Class
> 'Module' is not found or is abstract. (file://myClass.xmi, 3, 59)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObjectFromFactory(XMLHandler.java:2244)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObjectFromFactory(XMLHandler.java:2235)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLHandler.createObjectByType(XMLHandler.java:1332)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLHandler.createTopObject(XMLHandler.java:1468)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLHandler.processElement(XMLHandler.java:1019)
> at
> org.eclipse.emf.ecore.xmi.impl.XMIHandler.processElement(XMIHandler.java:87)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHandler.java:1001)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHandler.java:712)
> at
> org.eclipse.emf.ecore.xmi.impl.XMIHandler.startElement(XMIHandler.java:169)
> at
> com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown
> Source)
> at
> com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.parse(Unknown
> Source)
> at
> org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.java:181)
> ... 4 more
>
> I run this in a standalone application, so I tried to register my
> metamodel manually before I will create an instance of it, in the
> following way:
>
> resourceSet.getPackageRegistry().put("http://www.eclipse.org/gmt/2005/ATL",
> EcorePackage.eINSTANCE);
> resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("ecore",
> new EcoreResourceFactoryImpl());
> resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("xmi",
> new XMIResourceFactoryImpl());
>
> Am I missing something? Can you provide some more details on how did
> you solve the problem?
> Thank you in advance.
>
> Greg
|
|
| | |
Re: [EMF compare] ExampleLauncher problem [message #1214609 is a reply to message #1214524] |
Wed, 27 November 2013 14:32   |
Eclipse User |
|
|
|
If this question is about bpmn, it's best use their specific
newsgroup. Perhaps they provide a specialized resource implementation
(and associated resource factory) that you need to use...
On 27/11/2013 7:44 PM, Tarcísio Couto wrote:
> Hello guys, I have a similiar problem, when a try to load a model in
> my tool, the following error happen:
>
> !MESSAGE org.eclipse.emf.ecore.xmi.ClassNotFoundException: Class
> 'definitions' is not found or is abstract.
> (file:/C:/Users/tcp/reference_process.bpmn, 2, 423)
> !STACK 0
>
> I don't know how to solve this problem, and if there is a code for
> this, I don't know what the code is and where to put it.
|
|
| | |
Re: [EMF compare] ExampleLauncher problem [message #1790426 is a reply to message #1215660] |
Sun, 10 June 2018 11:12   |
Eclipse User |
|
|
|
Hi there,
I am trying to run ATL program using a java program, have the following error when trying to run my program java. It is noted that the BPMN.ecore is loaded from a plugin registered in eclipse. The following error is generated:
org.eclipse.m2m.atl.core.ATLCoreException: Error loading Models\process_1.bpmn: org.eclipse.emf.ecore.xmi.ClassNotFoundException: Class 'definitions' is not found or is abstract. (file:///x/Models/process_1.bpmn, 2, 370)
at org.eclipse.m2m.atl.core.emf.EMFInjector.inject(EMFInjector.java:70)
at org.eclipse.m2m.atl.core.emf.EMFInjector.inject(EMFInjector.java:84)
at comp.BPMN2BPMNSUC.loadModels(BPMN2BPMNSUC.java:122)
at comp.BPMN2BPMNSUC.main(BPMN2BPMNSUC.java:79)
Caused by: org.eclipse.emf.ecore.resource.impl.ResourceSetImpl$1DiagnosticWrappedException: org.eclipse.emf.ecore.xmi.ClassNotFoundException: Class 'definitions' is not found or is abstract. (file:///D:/memoirethese/pratique/JavaBPMN2BPMNSUC/tran/Models/process_1.bpmn, 2, 370)
at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.handleDemandLoadException(ResourceSetImpl.java:319)
at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.demandLoadHelper(ResourceSetImpl.java:278)
at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.getResource(ResourceSetImpl.java:406)
at org.eclipse.m2m.atl.core.emf.EMFInjector.inject(EMFInjector.java:65)
... 3 more
Caused by: org.eclipse.emf.ecore.xmi.ClassNotFoundException: Class 'definitions' is not found or is abstract. (file:///D:/memoirethese/pratique/JavaBPMN2BPMNSUC/tran/Models/process_1.bpmn, 2, 370)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObjectFromFactory(XMLHandler.java:2251)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.validateCreateObjectFromFactory(XMLHandler.java:2242)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createObjectByType(XMLHandler.java:1339)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.createTopObject(XMLHandler.java:1475)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.processElement(XMLHandler.java:1026)
at org.eclipse.emf.ecore.xmi.impl.XMIHandler.processElement(XMIHandler.java:77)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHandler.java:1008)
at org.eclipse.emf.ecore.xmi.impl.XMLHandler.startElement(XMLHandler.java:719)
at org.eclipse.emf.ecore.xmi.impl.XMIHandler.startElement(XMIHandler.java:163)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl$NSContentDriver.scanRootElementHook(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$PrologDriver.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.parse(Unknown Source)
at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.java:175)
at org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl.doLoad(XMLResourceImpl.java:253)
at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(ResourceImpl.java:1518)
at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(ResourceImpl.java:1297)
at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.demandLoad(ResourceSetImpl.java:259)
at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.demandLoadHelper(ResourceSetImpl.java:274)
... 5 more
. Someone help me please
Thanks in advance !
BOUZIDI
[Updated on: Sun, 10 June 2018 11:23] by Moderator
|
|
|
Re: [EMF compare] ExampleLauncher problem [message #1790427 is a reply to message #1790426] |
Sun, 10 June 2018 11:54  |
Eclipse User |
|
|
|
Hi
Do not re-use old threads for new topics. Certainly do not re-use threads in the wrong newsgroup.
This might be an ATL problem or an EMF problem. In either case it is almost certainly caused by inappropriate plugin or application registrations.
Without seeing your registrations it is very difficult to help; there are too many possibilities to try guessing. Post a repro as a zipped project.
Regards
Ed Willink
|
|
|
Goto Forum:
Current Time: Tue Jul 22 18:23:26 EDT 2025
Powered by FUDForum. Page generated in 0.05019 seconds
|