|
|
|
Re: [Xtend/XPand] Strange behaviour of checks [message #652780 is a reply to message #652778] |
Sun, 06 February 2011 17:08 |
|
Hi,
Maybe the problem is that you instantiate the metamodel more than once.
<metaModel class="org.eclipse.xtend.typesystem.emf.EmfMetaModel">
<metaModelFile value="platform:/resource/${PSMprofile}" />
</metaModel>
...
<metaModel class="org.eclipse.xtend.typesystem.emf.EmfMetaModel">
<metaModelFile value="platform:/resource/${PSMprofile}" />
</metaModel>
...
<metaModel class="org.eclipse.xtend.typesystem.emf.EmfMetaModel">
<metaModelFile value="platform:/resource/${PSMprofile}" />
</metaModel>
can you try something like this (instantiate once / reference where needed)
<bean id = "mm" class="org.eclipse.xtend.typesystem.emf.EmfMetaModel">
<metaModelFile value="platform:/resource/${PSMprofile}" />
</bean>
...
<metaModel idref="mm" />
...
<metaModel idref="mm" />
....
<metaModel idref="mm" />
if this does not help can you provide a minmal exampe that reproduces the problem? ecore/xmi/workflow?
~ Christian
Twitter : @chrdietrich
Blog : https://www.dietrich-it.de
[Updated on: Sun, 06 February 2011 17:12] Report message to a moderator
|
|
|
|
Powered by
FUDForum. Page generated in 0.03897 seconds