How to add PackageExplorerView’s all toolbars and functionalities to eclipse RCP applications? I used PackageExplorer view id to show the PackageExplorer view. It is showing the view in the rcp application. But after creating the project in the PackageExplorer view, it is not showing the project icons for the prjects created. How to ressolve this issue?
How to add PackageExplorerView’s all toolbars and functionalities to eclipse RCP applications? I used
Share
This is a known issue in Eclipse RCP applications.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=234252
The work around is to add some code to your ApplicationWorkbenchAdvisor.java
Here’s some more documentation about this issue in RCP
http://help.eclipse.org/ganymede/topic/org.eclipse.platform.doc.isv/guide/cnf_rcp.htm
I’ve add this code to my initialize method in order to get the images to show up in the Project Explorer, so you’ll need to track down the correct images to add for the Package Explorer if those images are different from these.
Hope this helps.
Thanks!