Given a model with classes as follows:
A contains attribute b containment reference to B
B contains attribute c containment reference to C
C contains attribute d reference to D
D contains attribute c many reference to C
The last two are opposite references. Classes A and D are objects that are not contained by others.
Using the ECore metadata, the known information is d = EObject instance of class D and cref is the EReference of c to class D. From the cref.getEOpposite().getName() I know the attribute name on class C is "d".
What I want to do is create an OGNL-like string that tells me the path from the root object to the "d" attribute on class C. In other words, in this case, it will be "b.c.d", or more completely: "A.b.c.d".
To summarize: I am working with a 0..* reference and want to know what the path to the opposite side of the reference is, starting at a root object.
Any hints?