Get the baseline hierarchy of the specific baseline using Java RTC client API
![]()
Manu K R (13●3)
| asked Feb 09 '18, 1:17 a.m.
edited Feb 09 '18, 1:27 a.m. by Ralph Schoon (62.3k●3●36●43) How to get the baseline hierarchy of the specific baseline using Java RTC client API's? |
One answer
![]()
See:
ITeamRepository repo = ...
IBaselineHandle baselineHandle = ...
IWorkspaceManager wm = SCMPlatform.getWorkspaceManager(repo); IBaselineConnection bc = wm.getBaselineConnection(wm);
IBaselineHierarchyResult hierarchy = bc.getBaselineHierarchy();
|