我们尝试在 RCP/RAP 应用程序中使用单一来源。RCP 应用程序工作正常,我们现在尝试将 RAP 用于 Web 前端。
例如下面的类
public class NavigationProcessor {
//...
@Inject
private IEclipseContext context;
@Inject
private MApplication application;
@Inject
private EModelService modelService;
//...
}
使用 IEclipseContext。但是在将目标设置为 RAP 后,org.eclipse.e4.core.contexts.IEclipseContext
无法解析命名空间。
将目标设置为 RAP 后如何访问 IEclipseContext?
提前致谢!