0
우리는 RCP/RAP 응용 프로그램에서 단일 소싱을 사용하려고합니다. RCP-Application이 제대로 작동하며 이제 웹 프런트 엔드에 RAP를 사용하려고합니다. 예를 들어RAP 응용 프로그램에서 IEclipseContext 사용
다음 클래스
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에 어떻게 액세스합니까?
미리 감사드립니다.