It's all about the answers!

Ask a question

Get the baseline hierarchy of the specific baseline using Java RTC client API


Manu K R (133) | asked Feb 09 '18, 1:17 a.m.
edited Feb 09 '18, 1:27 a.m. by Ralph Schoon (62.3k33643)

 How to get the baseline hierarchy of the specific baseline using Java RTC client API's?

One answer



permanent link
David Lafreniere (4.8k7) | answered Jun 19 '19, 4:05 p.m.
FORUM MODERATOR / JAZZ DEVELOPER
See:
ITeamRepository repo = ...
IBaselineHandle baselineHandle = ...
IWorkspaceManager wm = SCMPlatform.getWorkspaceManager(repo);
IBaselineConnection bc = wm.getBaselineConnection(wm);
IBaselineHierarchyResult hierarchy = bc.getBaselineHierarchy();

Your answer


Register or to post your answer.