ILaunchManager#getLaunchConfigurations
Eclipseパッケージのメソッドを使用しようとしていorg.eclipse.debug.core
ますが、コンパイラーから次のメッセージが表示されます。
The method getLaunchConfigurations() from the type ILaunchManager refers to the missing type CoreException
例外がgetLaunchConfigurations()
スローされることはわかりますが、クラスCoreException
を含むjarが見つかりません。CoreException
この問題を解決するためにどのjarを使用する必要があるか誰かが知っていますか?
私が使用しているコードは次のとおりです。
ILaunchManager launchManager = DebugPlugin.getDefault().getLaunchManager();
for (ILaunchConfiguration launchConfiguration : launchManager.getLaunchConfigurations()) {
String configName = launchConfiguration.getName();
}
ビルドパスに次のjarファイルを含めました。
org.eclipse.debug.core_3.7.100.v20120521-2012
org.eclipse.core.runtime_3.8.0.v20120521-2346