如何以编程方式列出正在运行的Eclipse实例中的所有功能

时间:2011-07-08 12:49:37

标签: java eclipse eclipse-rcp

我想为Eclipse编写一个简单的依赖可视化插件。我目前基于Eclipse PDE Incubator Dependency Project。但是,我想将插件分组为功能以简化图表。

我已开始使用Platform.getBundleGroupProviders作为another post的答案。但是,这仅列出“关于”部分中的功能。我想获得所有功能。

如何获得完整的功能列表?

或者,是否有任何工具已经提供此功能?

1 个答案:

答案 0 :(得分:0)

您可以尝试org.eclipse.update.configurator.ConfiguratorUtils.getCurrentPlatformConfiguration().getConfiguredFeatureEntries(),但它会返回完全相同的已安装精选列表Platform.getBundleGroupProviders()[i].getBundleGroups()

当然你错过了一些功能吗?