Run action in Rcl Eclipse at startup

I have an RCP plugin and I set up a help system to run in this plugin. I can access it from the Help menu.

Now I want to start the "Dynamic Help" action by default at startup. How to do it?

+7
java eclipse-rcp
source share
2 answers

This was solved using the WorkbenchAdvisor implementation:

@Override public void postStartup() { IWorkbenchHelpSystem help = PlatformUI.getWorkbench().getHelpSystem(); help.displayDynamicHelp(); } 

The Startup extension turned out to be useless.

+5
source share

You can use the org.eclipse.ui.startup extension and implement the org.eclipse.ui.IStartup interface, which allows you to run code after the Workbench is initialized.

+1
source share

All Articles