Here\'s something obvious that should be easy to do...
How do I retrieve a list of installed plugins at runtime? Can\'t see an obvious way to do this a Platform.getBundl
Use following code to get the List of plugin installed in your RCP
BundleContext ctx = FrameworkUtil.getBundle(your/Class/Name.class).getBundleContext(); Bundle[] bundles = ctx.getBundles();