标签: eclipse-rcp
所以我在我的e4 RCP应用程序中定义了Part(在Application.e4xmi内)并为其分配了ID。如何在代码中获得对此Part的引用。我需要一个能够在其上执行方法的引用。
Part
Application.e4xmi
ID
答案 0 :(得分:1)
注入模型服务EModelService和应用程序MApplication并调用
EModelService
MApplication
modelService.find(id, application);
您可以使用其他部分代替MApplication,但应用程序应始终有效。