我正在尝试使用ILaunchManager#getLaunchConfigurations
Eclipseorg.eclipse.debug.core
包中的方法,但编译器给了我消息:
The method getLaunchConfigurations() from the type ILaunchManager refers to the missing type CoreException
我可以看到getLaunchConfigurations()
抛出CoreException
异常,但我找不到包含CoreException
该类的 jar!有谁知道我需要使用哪个 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