Ok I'll try
Well lets say we have a stereotype containing some values with aliases and initial values... Everything as usual so far no problems.
Now imagine you want to have the initial value changed in a future release but need to keep the old values because of the older releases.
Release Information is defined in the tagged values of every attribute.
I just need a way to have multiple attributes with the same name but different initial values under one Stereotype (in my case a simple enum)!
For Example:
Enum : EgEnum
Values: name type alias initialvalue
1) val1 string v1 displayval1
2) val2 string v2 displayval2
3) val3 string v3 displayval3
Now i want:
4) val3 string v3 displayval33
Another problem i just faced is that is isnt even possible anymore (in EA 11 it was, just tested) to have a different value and only the same alias and/or display value eg like that:
4) val33 string v33 displayval3
In every of the described cases the error message is: Attribute with the same name alrdy exist!