Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF » Bug ? Resolving Ecore Cross References
Bug ? Resolving Ecore Cross References [message #949932] Fri, 19 October 2012 13:00 Go to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi folks, I already posted this issue in the Ecore tool forum, but I think the topic is related to the forum better.

I have a problem concerning the resolving of ecore cross references.

In my model I have cross references from entities to the same entity in a different file.

In my ecore model the reference's upper bound is set to unbounded and the lower bound is set to 1.

The problem is, when the XML are parsed and I want to access the referenced objects in foo as single entities, these objects (in my case "ports") are null. It seems the factory returns just new objects of the types.
<foo>
 <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
 <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice2']/@port[name='TestDevice2Port']</refPort>
</foo>


The weird thing is, the references seems to be resolved, if only one referenced object is defined in the XML document as attribute of foo, like the following example.
<foo 
refport="bar_test.bar_specification#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']" />


Maybe some properties are wrong in the .ecore ?

Thx again,

Florian

EDIT1:
I also tried to resolve the references with the static method EcoreUtil.resolveAll()
Re: Bug ? Resolving Ecore Cross References [message #950063 is a reply to message #949932] Fri, 19 October 2012 15:48 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Florian,

Comments below.

On 19/10/2012 3:00 PM, Florian B. wrote:
> Hi folks, I already posted this issue in the Ecore tool forum, but I
> think the topic is related to the forum better.
> I have a problem concerning the resolving of ecore cross references.
>
> In my model I have cross references from entities to the same entity
> in a different file.
> In my ecore model the reference's upper bound is set to unbounded and
> the lower bound is set to 1.
> The problem is, when the XML are parsed and I want to access the
> referenced objects in foo as single entities, these objects (in my
> case "ports") are null. It seems the factory returns just new objects
> of the types.
Or they're unresolved proxies?
>
> <foo>
> <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
>
> <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice2']/@port[name='TestDevice2Port']</refPort>
>
Is this referenced file in the same folder as the file that contains the
above reference?
> </foo>
>
>
> The weird thing is, the references seems to be resolved, if only one
> referenced object is defined in the XML document as attribute of foo,
> like the following example.
> <foo
> refport="bar_test.bar_specification#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']"
> />
>
>
> Maybe some properties are wrong in the .ecore ?
Maybe, but since you don't show the Ecore, who's to know? After
parsing, does the getRefPort list contain more than one element?
> Thx again,
>
> Florian
> EDIT1:
> I also tried to resolve the references with the static method
> EcoreUtil.resolveAll()


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #950089 is a reply to message #950063] Fri, 19 October 2012 16:23 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi Ed,
Quote:
> Hi folks, I already posted this issue in the Ecore tool forum, but I
> think the topic is related to the forum better.
> I have a problem concerning the resolving of ecore cross references.
>
> In my model I have cross references from entities to the same entity
> in a different file.
> In my ecore model the reference's upper bound is set to unbounded and
> the lower bound is set to 1.
> The problem is, when the XML are parsed and I want to access the
> referenced objects in foo as single entities, these objects (in my
> case "ports") are null. It seems the factory returns just new objects
> of the types.
Or they're unresolved proxies?

Well, I get the amount of objects in the EList, when I call getRefPorts in foo.
But all theses objects seems to be genereated by the default values defined in the ecore.


Quote:

> <foo>
> <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
>
> <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice2']/@port[name='TestDevice2Port']</refPort>
>
Is this referenced file in the same folder as the file that contains the
above reference?

Yes, they are.

How should I provide you the .ecore? As text, or screenshot? I don't know whats easier for you...

Thank you very much for your help,

Florian

Re: Bug ? Resolving Ecore Cross References [message #950106 is a reply to message #950089] Fri, 19 October 2012 16:36 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Florian,

Comments below.

On 19/10/2012 6:23 PM, Florian B. wrote:
> Hi Ed, Quote:
>> > Hi folks, I already posted this issue in the Ecore tool forum, but
>> I > think the topic is related to the forum better.
>> > I have a problem concerning the resolving of ecore cross references.
>> >
>> > In my model I have cross references from entities to the same
>> entity > in a different file.
>> > In my ecore model the reference's upper bound is set to unbounded
>> and > the lower bound is set to 1.
>> > The problem is, when the XML are parsed and I want to access the >
>> referenced objects in foo as single entities, these objects (in my >
>> case "ports") are null. It seems the factory returns just new objects
>> > of the types.
>> Or they're unresolved proxies?
>
> Well, I get the amount of objects in the EList, when I call
> getRefPorts in foo. But all theses objects seems to be genereated by
> the default values defined in the ecore.
So no doubt they're unresolved proxies. I.e., I'm sure eIsProxy is true
for these objects. What's their proxy URI; you can see that in the
debugger.
>
> Quote:
>> > <foo>
>> >
>> <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
>> >
>> >
>> <refPort>bar_test.bar_specification#//@devices/@device[name='testDevice2']/@port[name='TestDevice2Port']</refPort>
>> >
>> Is this referenced file in the same folder as the file that contains
>> the above reference?
>
> Yes, they are.
And did you load the resource containing these references with an
absolute URI?
> How should I provide you the .ecore? As text, or screenshot? I don't
> know whats easier for you...
>
> Thank you very much for your help,
>
> Florian
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #953724 is a reply to message #950106] Mon, 22 October 2012 13:38 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi Ed,
Quote:
So no doubt they're unresolved proxies. I.e., I'm sure eIsProxy is true
for these objects. What's their proxy URI; you can see that in the
debugger.

I did the test and eIsProxy() returns false
I cannot see any URI in the debugger... shall they be located in the eProperties? In my case this is null as well...

Quote:
And did you load the resource containing these references with an
absolute URI?

I didn't load the resource explicetely. I thought, the reference would be resolved as runtime, if I just access the referenced objects. Other references in my model seem to be resolved perfectly because I can access other objects defined in this file containing ports without problems.

Thanks again

Flo
Re: Bug ? Resolving Ecore Cross References [message #953764 is a reply to message #953724] Mon, 22 October 2012 14:09 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Florian,

Comments below.

On 22/10/2012 3:38 PM, Florian B. wrote:
> Hi Ed, Quote:
>> So no doubt they're unresolved proxies. I.e., I'm sure eIsProxy is
>> true for these objects. What's their proxy URI; you can see that in
>> the debugger.
>
> I did the test and eIsProxy() returns false
For which objects? The ones that apparently have no values populated?
If they resolved, then whatever they've resolved to have no populated
values...
> I cannot see any URI in the debugger... shall they be located in the
> eProperties?
Yes.
> In my case this is null as well...
> Quote:
>> And did you load the resource containing these references with an
>> absolute URI?
>
> I didn't load the resource explicetely.
You must of loaded some initial resource to get this all started. After
all, a resource set will be empty until you do something explicit to
load something.
> I thought, the reference would be resolved as runtime, if I just
> access the referenced objects.
Yes, but as I said, the initial resource must be loaded explicitly.
> Other references in my model seem to be resolved perfectly because I
> can access other objects defined in this file containing ports without
> problems.
> Thanks again
So either they're unresolved proxies, or they've resolved to objects
that really don't have any specified value. What can I say about that?
You have all the resources in your resource set. With the debugger you
can determine all the contents of all those resources. That will answer
questions better than my guesses...
>
> Flo


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #953835 is a reply to message #953764] Mon, 22 October 2012 15:16 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi Ed,

Quote:
> I did the test and eIsProxy() returns false
For which objects? The ones that apparently have no values populated?
If they resolved, then whatever they've resolved to have no populated
values...

Yes, when you look at my example the values of refPort are null... and the test whether the refPort is proxy is false.

Quote:
> I didn't load the resource explicetely.
You must of loaded some initial resource to get this all started. After
all, a resource set will be empty until you do something explicit to
load something.


Yes sure, I loaded the "main initial file" and in the debugger, I can see all other resources in the resource set.
So no problem at this point. I figured out in the debugger all of the referenced resources will be loaded and the URI of these files are correct, too.

Now i went in the debugger to the loaded resource which contains the refPort in the resourceset and got to the refPort.

If it is defined as an attribute of the containing object, like in the 2nd example in my first post, all attributes of the port are resolved and are correct.
Also the eProperties has a value (eProperties BasicEObjectImpl$EPropertiesHolderImpl (id=1969) <-- in my case )
these are the values of properties:
eClass = null
eContents = EContentsList {eObject = PortImpl}
eCrossReference = null
eProxyURI = null
eResource = null
eSettings = null

but in the first case when refPort is defined as an xml-entity of the containing object (see example 1 )
eProperties is null
and the values are like the default value literals defined in the ecore for the objects of Port....


Re: Bug ? Resolving Ecore Cross References [message #954215 is a reply to message #953835] Mon, 22 October 2012 21:42 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Florian,

Comments below.

On 22/10/2012 5:16 PM, Florian B. wrote:
> Hi Ed,
> Quote:
>> > I did the test and eIsProxy() returns false
>> For which objects? The ones that apparently have no values populated?
>> If they resolved, then whatever they've resolved to have no populated
>> values...
>
> Yes, when you look at my example the values of refPort are null... and
> the test whether the refPort is proxy is false.
> Quote:
>> > I didn't load the resource explicetely.
>> You must of loaded some initial resource to get this all started.
>> After all, a resource set will be empty until you do something
>> explicit to load something.
>
>
> Yes sure, I loaded the "main initial file" and in the debugger, I can
> see all other resources in the resource set. So no problem at this
> point. I figured out in the debugger all of the referenced resources
> will be loaded and the URI of these files are correct, too.
>
> Now i went in the debugger to the loaded resource which contains the
> refPort in the resourceset and got to the refPort.
> If it is defined as an attribute of the containing object, like in the
> 2nd example in my first post, all attributes of the port are resolved
> and are correct.
Keep in mind that attributes are not resolved. The reference itself is
resolved. So you're saying in the first example they resolve, but the
object they resolve to has no values for the attributes. So the
question is, what are they resolving too? Why doesn't that object have
any values? You say it's not a proxy, so it must have an eContainer()
that's not null, or an eResource() that's not null. I can't say why that
object has not values for the attributes but that's a problem with the
resolved object and you've told me nothing about that object. You've
only told me that the reference is properly resolve...
> Also the eProperties has a value (eProperties
> BasicEObjectImpl$EPropertiesHolderImpl (id=1969) <-- in my case )
> these are the values of properties:
> eClass = null
> eContents = EContentsList {eObject = PortImpl}
> eCrossReference = null
> eProxyURI = null
> eResource = null
> eSettings = null
> but in the first case when refPort is defined as an xml-entity of the
> containing object (see example 1 )
> eProperties is null and the values are like the default value literals
> defined in the ecore for the objects of Port....
So follow the eContainer references to figure out what resource it's
contained. Should the object in that resource really have values for
the attributes?
>
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #954922 is a reply to message #954215] Tue, 23 October 2012 11:07 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi Ed,

what should I say to make my problem more clear???
I'll try it now by giving more information about my model:
I have several single ecore models (Configuration, System, Tool) that describe any system. All of these models have their own XML-Instance.
One model called "System" has an object "Device" with the "Port" object defined in it. The "Port" has several attributes like speed i.e.
Another model called "Tool" has an object "Schedule" with the "refPort" as EType of "Port" as attribute. This "refPort" has no upper bound and the lower bound is 1.
The "System" model has other objects too, that have a reference to the defined "Port" in an "Device".
The main or initial model "Configuration" has references to the "System" and the "Tool" model.

Now again to my specific problem:
I load an XML-instance of the "Configuration" and all other resources are present in the resourceSet. Which is fine and I can access the "System" and also the the "Tool".

Now I want to access the refPort inside my "Tool" model. There are two possibilities now I figured out. One possibility works and resolves the reference of the "refPort" to the "Port" and another will not work.
Here is the first example which works:
The refPort is set as xml-attribute of "Schedules"
<?xml ...>
<tool>
  <schedule
   refPort="System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']">
     ... some other objects of Schedule
  </schedule>
  .... some other objects of Tool
</tool>

When I use the debugger, I can see attributes of eProperties and eContainer.
The attributes of eProperties are:
eClass = null
eContents = EContentsList {eObject = PortImpl}
eCrossReference = null
eProxyURI = null
eResource = null
eSettings = null

And the attributes of eContainer:
DeviceImpl with all their containing attributes.

The problem with this XML-Instance is, it is not possible to model more than one "refPort" inside the "Schedule" of "Tool" since in xml attributes are allowed only once...

When I want to model more than on refPort I need to specify this in the xml via dedicated entities of "refPort". The next example code of an XML-instance of "Tool" will not work.

<?xml ...>
<tool>
  <schedule>
   <refPort>System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
  .... some other objects of Schedule
  </schedule>
  .... some other objects tool
</tool>

You see the reference to the "Port" object has not changed inside the XML, just the way it is specified.
Now eContainer is null as well as eProperties and the values of the refPort are the default values defined in the .ecore model.

As you can see in the upper and lower bounds of refPort, I need more then one refPort inside the "Schedule".

What is going on here Ed?
Re: Bug ? Resolving Ecore Cross References [message #955196 is a reply to message #954922] Tue, 23 October 2012 15:45 Go to previous messageGo to next message
Christian Damus is currently offline Christian DamusFriend
Messages: 1270
Registered: July 2009
Location: Canada
Senior Member

Hi, Florian,

I think your XML is telling EMF to create a Port instance that has no
attributes.

To tell EMF that you are referencing an existing Port instance defined
elsewhere, you need an href or an idref attribute in your <refPort>
element. Try something like this:

<tool>
<schedule>
<refPort
href="System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']"
/>
</schedule>
</tool>

HTH,

Christian


On 2012-10-23 11:07:29 +0000, Florian B. said:

> Hi Ed,
> what should I say to make my problem more clear??? I'll try it now by
> giving more information about my model: I have several single ecore
> models (Configuration, System, Tool) that describe any system. All of
> these models have their own XML-Instance.
> One model called "System" has an object "Device" with the "Port" object
> defined in it. The "Port" has several attributes like speed i.e.
> Another model called "Tool" has an object "Schedule" with the "refPort"
> as EType of "Port" as attribute. This "refPort" has no upper bound and
> the lower bound is 1. The "System" model has other objects too, that
> have a reference to the defined "Port" in an "Device".
> The main or initial model "Configuration" has references to the
> "System" and the "Tool" model.
>
> Now again to my specific problem:
> I load an XML-instance of the "Configuration" and all other resources
> are present in the resourceSet. Which is fine and I can access the
> "System" and also the the "Tool".
>
> Now I want to access the refPort inside my "Tool" model. There are two
> possibilities now I figured out. One possibility works and resolves the
> reference of the "refPort" to the "Port" and another will not work.
> Here is the first example which works: The refPort is set as
> xml-attribute of "Schedules"
> <?xml ...>
> <tool>
> <schedule
>
> refPort="System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']">
>
> ... some other objects of Schedule
> </schedule>
> .... some other objects of Tool
> </tool>
>
> When I use the debugger, I can see attributes of eProperties and eContainer.
> The attributes of eProperties are:
> eClass = null
> eContents = EContentsList {eObject = PortImpl}
> eCrossReference = null
> eProxyURI = null
> eResource = null
> eSettings = null
> And the attributes of eContainer:
> DeviceImpl with all their containing attributes.
>
> The problem with this XML-Instance is, it is not possible to model more
> than one "refPort" inside the "Schedule" of "Tool" since in xml
> attributes are allowed only once...
>
> When I want to model more than on refPort I need to specify this in the
> xml via dedicated entities of "refPort". The next example code of an
> XML-instance of "Tool" will not work.
>
>
> <?xml ...>
> <tool>
> <schedule>
>
> <refPort>System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
>
> .... some other objects of Schedule
> </schedule>
> .... some other objects tool
> </tool>
>
> You see the reference to the "Port" object has not changed inside the
> XML, just the way it is specified. Now eContainer is null as well as
> eProperties and the values of the refPort are the default values
> defined in the .ecore model.
> As you can see in the upper and lower bounds of refPort, I need more
> then one refPort inside the "Schedule".
> What is going on here Ed?
Re: Bug ? Resolving Ecore Cross References [message #955222 is a reply to message #955196] Tue, 23 October 2012 16:09 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Quote:

Hi, Florian,

I think your XML is telling EMF to create a Port instance that has no
attributes.

To tell EMF that you are referencing an existing Port instance defined
elsewhere, you need an href or an idref attribute in your <refPort>
element. Try something like this:

<tool>
<schedule>
<refPort
href="System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']"
/>
</schedule>
</tool>

HTH,

Christian


YAY!!!! That works!
THANK YOU VERY MUCH!!!!!!

Never thought of using href inside ecore...

Re: Bug ? Resolving Ecore Cross References [message #955922 is a reply to message #955222] Wed, 24 October 2012 05:23 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Florian,

Note that you never mentioned you were producing these serializations
manually, nor did you give any indication that it was an XMI
serialization...


On 23/10/2012 6:09 PM, Florian B. wrote:
> Quote:
>> Hi, Florian,
>>
>> I think your XML is telling EMF to create a Port instance that has no
>> attributes.
>>
>> To tell EMF that you are referencing an existing Port instance
>> defined elsewhere, you need an href or an idref attribute in your
>> <refPort> element. Try something like this:
>>
>> <tool>
>> <schedule>
>> <refPort
>> href="System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']"
>> />
>> </schedule>
>> </tool>
>>
>> HTH,
>>
>> Christian
>
>
> YAY!!!! That works! THANK YOU VERY MUCH!!!!!!
>
> Never thought of using href inside ecore...
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #956165 is a reply to message #955922] Wed, 24 October 2012 09:38 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi Ed,

yes I never mentioned the manually created XML files, cause I thought it doesn't matter. I got these XML files as example files which were not generated by myself...

I think we were talking at cross purposes...
Anyway, I still want to thank you cause you really tought me some essential things about ecore.

But one last question: Why must the reference to the object inside the xml be defined with href?

Thank you
Re: Bug ? Resolving Ecore Cross References [message #956328 is a reply to message #956165] Wed, 24 October 2012 12:18 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Florian,

The href attribute is a standard XMI mechanism for specifying that an
element is acting as a reference to something else. If you defined your
model with an XML Schema where the repeating element has type anyURI and
you specified an Ecore annotation indicating that this is to treated as
a reference, you could produce and consume exactly the serialization
you showed originally (which is why it didn't look wrong to me).


On 24/10/2012 11:38 AM, Florian B. wrote:
> Hi Ed,
> yes I never mentioned the manually created XML files, cause I thought
> it doesn't matter. I got these XML files as example files which were
> not generated by myself...
> I think we were talking at cross purposes... Anyway, I still want to
> thank you cause you really tought me some essential things about ecore.
> But one last question: Why must the reference to the object inside the
> xml be defined with href?
> Thank you


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #965665 is a reply to message #956328] Wed, 31 October 2012 12:14 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi again,
thank you for your explanation. I'm sorry I didn't answer before. I was busy last week.

How can I force the ecore model to accept serialized XML files where the unbounded attributes are described in this way:
<?xml ...>
<tool>
<schedule>
<refPort>System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
.... some other objects of Schedule
</schedule>
.... some other objects tool
</tool>

?
Otherwise I need to change all my example XML files containing unbounded references to href attributes, which will be a big effort...?
Do I have to change an attribute in the .genmodel?


Re: Bug ? Resolving Ecore Cross References [message #965687 is a reply to message #965665] Wed, 31 October 2012 12:33 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Florian,

You'd need extended meta data annotations as well as load and save
options to respect those. It's better you use standard XMI syntax...


On 31/10/2012 1:14 PM, Florian B. wrote:
> Hi again, thank you for your explanation. I'm sorry I didn't answer
> before. I was busy last week.
>
> How can I force the ecore model to accept serialized XML files where
> the unbounded attributes are described in this way:
> <?xml ...>
> <tool>
> <schedule>
> <refPort>System_test.system#//@devices/@device[name='testDevice1']/@port[name='TestDevice1Port']</refPort>
> .... some other objects of Schedule
> </schedule>
> .... some other objects tool
> </tool>
>
> ?
> Otherwise I need to change all my example XML files containing
> unbounded references to href attributes, which will be a big
> effort...? Do I have to change an attribute in the .genmodel?
>
>
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #965801 is a reply to message #965687] Wed, 31 October 2012 14:11 Go to previous messageGo to next message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Quote:
Florian,

You'd need extended meta data annotations as well as load and save
options to respect those. It's better you use standard XMI syntax...


Hi Ed,

can you pass me some documentation for that? Unluckily, I can't use standard XMI syntax...

Thank you!
Re: Bug ? Resolving Ecore Cross References [message #965810 is a reply to message #965801] Wed, 31 October 2012 14:16 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
http://www.theserverside.com/news/1364302/Binding-XML-to-Java

On 31/10/2012 3:11 PM, Florian B. wrote:
> Quote:
>> Florian,
>>
>> You'd need extended meta data annotations as well as load and save
>> options to respect those. It's better you use standard XMI syntax...
>
>
> Hi Ed,
> can you pass me some documentation for that? Unluckily, I can't use
> standard XMI syntax...
> Thank you!
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Bug ? Resolving Ecore Cross References [message #978801 is a reply to message #965810] Sat, 10 November 2012 10:38 Go to previous message
Florian B. is currently offline Florian B.Friend
Messages: 21
Registered: July 2012
Location: Hamburg Germany
Junior Member
Hi Ed,

I just want to let you know I have overcome the issue by converting the xml tags to use the standard XMI syntax.

I used the JDOM library, which was for me the easiest and fastest way to convert the tags.

Thans again for your help.

Flo
Previous Topic:Validator and generated source in xbase
Next Topic:[CDO] Questions regarding the new offline/failover example
Goto Forum:
  


Current Time: Fri Apr 19 20:07:07 GMT 2024

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

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

Back to the top