@Override
 public Object executeWithException(ExecutionEvent event, IStructuredSelection selection) {
   RendererManager.openInJob(
       artifacts, PresentationType.GENERALIZED_EDIT, IRenderer.OPEN_IN_GRAPH, Boolean.TRUE);
   return null;
 }
Example #2
0
 @Override
 public Object executeWithException(ExecutionEvent event, IStructuredSelection selection) {
   Artifact artifact = artifacts.iterator().next();
   RendererManager.openInJob(artifacts, ArtifactDoubleClick.getPresentationType(artifact));
   return null;
 }