Object oSel = Selections.getFirstSelection(event.getSelection());
if (oSel != null && oSel instanceof ProfileStatusDTO) {
ProfileStatusDTO s = asProfileStatus(oSel);
String profileId = s.getProfile();
ProfileNode profileNode = searchProfile(nav, profileId, getFabric().getVersionsNode());
if (profileNode != null) nav.selectReveal(new StructuredSelection(profileNode));
}
}
}
});