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?
标签:
eclipse-rcp
相关问题
- install plugin spy plugin into custom rcp applicat
- How to follow test first approach with Equinox/OSG
- RAP: How to access Object in ViewPart
- RCP Command with object argument
- How to add Swing component to SWT?
相关文章
- Problem with Validating the Integer Value in Java
- Using Eclipse with large workspaces
- Transfer Items between Views with Drag-and-Drop in
- how to build eclipse rcp application from .product
- Xtext DSL embedded editor in a dialog
- Maven Tycho: How to Exclude eclipsec.exe in a prod
- reference non plugin project to eclipse plugin pro
- When to choose “Generate an activator…” when creat
You can try looking at
IBundleGroup,
IBundleGroupProvider
andPlatform.getBundleGroupProviders
. I believe this API is the source of the information you see in the about dialog.