In the RTC Java-API, how do I retrieve the "date added" property of a changeset to a workspace?
Given a stream, how do I retrieve the list of changesets as well as the "date added" property for these changesets? I can only find the getLastChangeDate() method in IChangeSet. |
Accepted answer
With the client api you can retrieve the date added with using IWorkspaceConnection class.
IWorkspaceConnection stream = findWorkspace(repositoryWorkspaceName); List<IComponentHandle> components = stream .getComponents(); Timothy Tan selected this answer as the correct answer
|
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.