IBaselineHierarchyResult: Multiple parents for the same child?
![]() Looking at the class IBaselineHierarchyResult and the method getChildToParentsMap() it seems that there can be multiple parents for one child.
|
Accepted answer
![]()
Geoffrey Clemm (30.1k●2●30●35)
| answered May 31 '17, 9:59 p.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER At a logical level, yes, a particular child baseline can be referenced by an arbitrary number of parent baselines.
To do so, create stream X with baseline A.3 of component A and baseline B.5 of component B.
Then create stream Y with baseline C.4 of component C and baseline B.5 of component B.
In stream X, make B a child of A, and then baseline A, resulting in a new baseline of A whose child is baseline B.5
In stream Y, make B a child of C, and then baseline b, resulting in a new baseline of C whose child is baseline B.5.
Or did i misunderstand your question?
Marko Tomljenovic selected this answer as the correct answer
Comments Yes, Geoff, you are right.
|