| [news.eclipse.platform.rcp] Re: IStartup / org.eclipse.ui.startup - not invoked |
Hi -
I've implemented an IStartup, and registered it under the org.eclipse.ui.startup extension in my plugin.
However, for some reason my IStartup's earlyStartup() is (definitely) not being invoked.
My plugin.xml has this entry:
<plugin> <extension point="org.eclipse.ui.startup"> <startup class="com.whatever.EarlyStartup"/> </extension> ... </plugin>
I don't have any lazy start stuff in the MANIFEST.MF.
or eclipse won't read the plugin.xml
Later, PW