本文介绍了我的Eclipse RCP代码如何列出所有已安装的功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在为(一个Eclipse RCP应用程序)编写插件,并且需要一些Java源代码才能列出运行的Bioclipse实例中的所有已安装功能。我如何以编程方式列出所有已安装的功能?
I am writing a plugin for Bioclipse, an Eclipse RCP application, and need some Java source code to list all installed features in a running Bioclipse instance. How can I programmatically list all installed features?
推荐答案
您可以尝试查看 IBundleGroup,
IBundleGroupProvider
和 Platform.getBundleGroupProviders
。我相信此API是您在关于对话框中看到的信息的来源。
You can try looking at IBundleGroup,
IBundleGroupProvider
and Platform.getBundleGroupProviders
. I believe this API is the source of the information you see in the about dialog.
这篇关于我的Eclipse RCP代码如何列出所有已安装的功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!