4

我目前正在实现一个 Eclipse 4.3 应用程序并遇到了问题。我尝试将命令参数化以删除特定文件。我的方法对应于Getting parameter of parameterized command in Eclipse RCP 4.2,但我不知何故无法正常工作。

在我的 Application.e4xmi 中,我添加了一个带有参数的命令:

<commands xmi:id="_K1MVgDGKEeOO8o2ChqdHMA" elementId="first.application.command.deleteproject" commandName="deleteProjectCommand">
<parameters xmi:id="_Hr4FEDGTEeOO8o2ChqdHMA" elementId="cmd0" name="cmd0" typeId="" optional="false"/>
</commands>

在我的代码中的某一时刻,我创建了命令、设置参数并执行它:

Map<String, String> parameters = new HashMap<String, String>();
parameters.put("cmd0", "test");
final Command command =commandService.getCommand("first.application.command.deleteproject");
final ParameterizedCommand pcmd = ParameterizedCommand.generateCommand(command, parameters);
pcmd.executeWithChecks(null, null);

我有一个与命令链接的处理程序,它具有以下执行方法:

@Execute
public void execute(@Optional @Named("cmd0") String file) {
  System.out.println("delete project " + file);
}

一切正常,只是file没有注入,它保持null。当我pcmd在执行之前检查变量时,它告诉我它已将参数正确设置为{cmd0=test}(使用System.out.println(pcmd.getParameterMap());)。当我删除@Optional时,根本不调用执行方法。

某处参数cmd0丢失。我的代码中的错误在哪里?

谢谢!

4

1 回答 1

5

刚刚找到解决方案。执行pcmd.executeWithChecks(null, null);似乎没有按预期工作。相反,我们需要EHandlerService我们注入的:

@Inject
private EHandlerService handlerService;

现在我们使用这样的服务执行命令:

handlerService.executeHandler(pcmd);

瞧!

我希望这也可以帮助某人。

于 2013-10-10T11:01:49.103 回答