如何在e4 RCP中显示所有状态(错误,信息和警告消息给用户?

时间:2017-04-21 13:09:11

标签: eclipse-rcp e4

我想在E4 RCP应用程序中向用户显示所有错误或执行。一种方式是我可以创建事件主题并在每个错误或异常时我必须发送消息以显示对话框并将其记录在某些日志中file.Is有任何更好的方法来实现同样的东西,如果我不想发送每次应用程序遇到任何错误

1 个答案:

答案 0 :(得分:1)

您可以使用具有各种方法的StatusReporter类来记录和显示错误。

@Inject
StatusReporter statusReporter;

// Display (and log) error
statusReporter.show(StatusReporter.ERROR, "Internal Error", exception);

// Log error
statusReporter.report(status, StatusReporter.LOG);