Getting parameter of parameterized command in Eclipse RCP 4.2
问题 In Eclipse 3.7 we could do this: public class HelloName extends AbstractHandler { @Override public Object execute(ExecutionEvent event) throws ExecutionException { String name = event .getParameter("de.vogella.rcp.commands.parameterfirst.commandParameter1"); MessageDialog.openInformation(HandlerUtil.getActiveShell(event), "Hello", "Hello " + name); return null; } } In Eclipse 4.2 I made this handler, and I want the part id for findPart() to be given as a parameter, but where can I get the