Get snapshot information; I've got change-set information
![]()
I've got a change-set's details (IChangeSet/UUID). Now, I want to emulate the "Open in Change-Explorer" action in my eclipse application.
Tried searching for samples...could locate ShowChangeSetsAction class in the plugin - com.ibm.team.filesystem.ide.ui This is the API that the plugin uses to open the change-explorer: @Override protected void open(IWorkbenchPage page, SnapshotId snapshot, List<IChangeSetHandle> changeSets) { ChangesViewConverter.openChangeExplorer(page, new ChangeSetInput(snapshot, changeSets)); } I've got changeSets, but how do I find the snapshot ? Any alternate way to open the change-set, without providing snapshot ? |