2016-08-19 12 views
1

Eclipse RCPを初めて使用しました。私はEclipse JunoでRCPプロジェクトをセットアップしようとしています。
は私のワークスペースにすべてのプラグインをインポートした後、私は、アプリケーションを実行しようとすると、次のエラーを取得:Eclipse RCP:アプリケーション "org.eclipse.ui.ide.workbench"がレジストリに見つかりませんでした

java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry. The applications available are: org.eclipse.ant.core.antRunner, org.eclipse.e4.ui.workbench.swt.E4Application, org.eclipse.e4.ui.workbench.swt.GenTopic, org.eclipse.emf.mwe.core.WorkflowRunner, org.eclipse.equinox.app.error. 
    at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:248) 
    at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29) 
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) 
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) 
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354) 
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181) 
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
    at java.lang.reflect.Method.invoke(Method.java:597) 
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636) 
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591) 
    at org.eclipse.equinox.launcher.Main.run(Main.java:1450) 
    at org.eclipse.equinox.launcher.Main.main(Main.java:1426) 

が、私はこのエラーを解決する方法を知っているかもしれませんか?

答えて

1

プラグインorg.eclipse.ui.ideは、起動設定にする必要があります。メニューで

に行く:...ファイル名を指定して実行>実行構成あなたは日食IDEが、独自のアプリケーションを起動したくない場合は

Eclipse Launch Configuration

を、あなたは「メイン」に変更する必要があります起動 "アプリケーションの実行"のタブをクリックします。
org.eclipse.core.runtime.applications拡張ポイントの独自のアプリケーション検索を作成するには

関連する問題