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

Difference between revisions of "OTEquinox/Howto Run A Product Or Application"

(New page: ==Application== * Implement <code>IApplication</code> ** implement <code>Object start(IApplicationContext context)</code> - not returning before exit * Provide the Application as an exte...)
 
 
Line 15: Line 15:
 
** enable OT/Equinox (under ''Object Teams Runtime'')
 
** enable OT/Equinox (under ''Object Teams Runtime'')
  
[[Category:OTEquinox]]
+
[[Category:OTEquinox|Howto Run A Product Or Application]]

Latest revision as of 10:36, 27 February 2010

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