getCreateSshContainerAction(), separator2);
getViewer().addDoubleClickListener(new IDoubleClickListener() {
@Override
public void doubleClick(DoubleClickEvent event) {
FabricNavigator nav = FabricPlugin.getFabricNavigator();
if (nav != null && current != null) {
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, current.getVersionsNode());
if (profileNode != null)
nav.selectReveal(new StructuredSelection(profileNode));
}
}
}
});