Hi!
I'm writing an Eclipse plug-in and I've bumped into an issue. Amongst others I'm creating a new custom perspective. I need to execute some code when the workbench loads. I'm using a WorkbenchAdvisor and putting the code in the initialize method. However as it is now it's not being called...
Apparently I need to call this PlatformUI.createAndRunWorkbench(display, new ApplicationWorkbenchAdvisor();
but I don't know where to put this... I can't put it in the createInitialLayout
of the perspective because this is only called when the perspective is created for the first time.
Any ideas please? Thanks and regards, Krt_Malta