Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

OTEquinox/Howto Run A Product Or Application

Revision as of 09:51, 27 February 2010 by Stephan.cs.tu-berlin.de (Talk | contribs) (New page: ==Application== * Implement <code>IApplication</code> ** implement <code>Object start(IApplicationContext context)</code> - not returning before exit * Provide the Application as an exte...)

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

Application

  • Implement IApplication
    • implement Object start(IApplicationContext context) - not returning before exit
  • Provide the Application as an extension to org.eclipse.core.runtime.applications
  • launch as "Eclipse Application" with these selections on tab "Main":
    • select the Application to run
    • enable OT/Equinox (under Object Teams Runtime)

Product

  • In addition to 1. (Application) provide an extension to org.eclipse.core.runtime.products
(setting application and name should suffice)
  • launch as "Eclipse Application" with these selections on tab "Main":
    • select the Product to run
    • enable OT/Equinox (under Object Teams Runtime)

Back to the top