Show baseline and changeset with API Client
Hi,
I try to develop with the API client RTC a tool to have all changeset and baselines from one Stream (i have one component with two stream).
workspaceManager.findBaselines(criteres, Integer.MAX_VALUE, monitor); => return all baselines of two stream
IHistoricBaselineIterator it = workspaceConnection.getMergedBaselineHistory(composant, Integer.MAX_VALUE, monitor);
=> return only a part of my baselines with two occurs of each baseline.
What 's simple solution to retrieve all baselines of one stream ?
Thanks.
Philippe
|
One answer
Hi,
Finally, i found this :
IHistoricBaselineIterator ith = workspaceConnection.getBaselinesInHistory(composant, 50, monitor);
List<IBaselineHandle> baselines = new ArrayList<IBaselineHandle>();
baselines.addAll(ith.getBaselines());
while (ith.hasPrevious()) {
}
I don't know, if exist best solution ?
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.