* @see org.eclipse.ui.part.IShowInSource#getShowInContext()
* @since 2.1
*/
public ShowInContext getShowInContext() {
IPath repoPath = getRepositoryPath();
ITreeSelection selection = (ITreeSelection) tree.getSelection();
List<IResource> resources = new ArrayList<IResource>();
for (Iterator it = selection.iterator(); it.hasNext();) {
Object obj = it.next();
if (obj instanceof IResource)
resources.add((IResource) obj);
else if (obj instanceof PathNode && repoPath != null) {
PathNode pathNode = (PathNode) obj;