In our Eclipse RCP application (using Eclipse 3.7) I had overridden WorkbenchWindowAdvisor.postWindowCreate()
method, to hide the unwanted Coolbar/Toolbar items like File, Run etc. menus and Run Last Tool, Search etc. toolbar buttons and it was working fine. Now I have moved my code to Eclipse e4 4.1.2 and when I run my RCP application now it gets launched but it is showing these unwanted Coolbar/Toolbar items.
On some digging into the issue I found out that WorkbenchWindowAdvisor.postWindowCreate()
method is not used in e4
and it does not get called at all. So what is the alternative way of doing this in Eclipse e4?
EDIT:
I also want to mention that in my RCP application I am having Xtext
plugin.