I have a UML model (which is actually irrelevant as it could be any MOF model) with an ordered set I need to access from the last to the first element. I thus need to reverse it through OCL. I have seen there is the sortedBy method that needs an OCLExpression to use as sorting criterion but I can't get how to use it.

Any idea?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

If you are using Acceleo (your comment is suggesting that you are), you have two options:

  • use "myOrderedSet->reverse()" provided by the Acceleo library (that's not 100% pure OCL)
  • use something like "myOrderedSet->iterate(elem: MyType| myOrderedSet.insertAt(0, elem))"

Edit: It's been a long time since I used iterate since I use reverse all the time, the correct for of the iterate is this: link. And in case anyone had a doubt, here is the answer with reverse: link

Regards,

Stephane Begaudeau

link|improve this answer
iterate does not seem to be an OCL valid method for an OrderedSet. – Silli Feb 23 at 14:08
revers is actually not implemented in Acceleo... – Silli Feb 23 at 14:09
Well since it seems that you are really using Acceleo so "->reverse()" is the easiest way to go and as my link to the Acceleo documentation shows it, it is implemented on OrderedSet and Sequence: link. Just be sure that you have an OrderedSet and not a Set that does not have the reverse operation. – sbegaudeau Feb 24 at 6:04
I have edited my answer with a correction on the declaration of iterate and a screenshot of both solutions tested in Acceleo. – sbegaudeau Feb 24 at 6:18
thank you very much Stephane. I am actually trying to get the fragments contained in an Interaction in the exact order they are contained in the model but reversed. To this end I am doing interaction.fragment->asOrderedSet() and it actually returns the ordered set of fragments. However it marks as error both interaction.fragment->asOrderedSet()->reverse() and iterate but as I get to my Office I will check the installed ACCELEO version. Thank you again for your kind help – Silli Feb 24 at 6:29
feedback

You can do nothing except to put your model in the bin.

A MOF model can not reversed because you can have hundred of thousand of possible xmi serialization. I think that the reverse engineering is a specific mapping of only one kind of model serialization.

link|improve this answer
I guess i have been not clear in my answer. I have a OCL OrderedSet and I need to access its elements from the last to the first in an MOF Model to Text Transformation Language (ACCELEO) script. Is that possible? how? – Silli Feb 22 at 11:30
I don't use Acceleo. – UML GURU Feb 22 at 23:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.