tags:

views:

13

answers:

1

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?

+1  A: 

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.

Andrew Niefer

related questions