Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Eclipse4/RCP/FAQ

< Eclipse4‎ | RCP
Revision as of 15:01, 7 April 2011 by Unnamed Poltroon (Talk) (New page: == Why won't my application start? == E4AP products require having the following plugins: * org.eclipse.equinox.ds (must be started) * org.eclipse.equinox.event (must be started) Note th...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Why won't my application start?

E4AP products require having the following plugins:

  • org.eclipse.equinox.ds (must be started)
  • org.eclipse.equinox.event (must be started)

Note that org.eclipse.equinox.ds must be explicitly started. In your product file, you should have a section:

  <configurations>
     <plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="2" />
     <plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="3" />
     <plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="3" />
  </configurations>


What is the difference between IEclipseContext#set and IEclipseContext#modify?

Back to the top