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

Difference between revisions of "EATOP/tutorials"

(Getting Started)
(Create a EATOP project)
Line 8: Line 8:
  
 
===Create a EATOP project===
 
===Create a EATOP project===
Open menu
+
# Open menu ''File > New > EATOP Project'' and click ''Next >''
 +
# Call it <code>org.eclipse.sphinx.examples.library.ide</code> and click ''Next&nbsp;&gt;''
 +
# Disable option ''This plug-in will make contributions to the UI'' and click on ''Finish''.

Revision as of 09:26, 9 April 2014

Getting Started

This tutorial will guide you through the development of a simple application based on EATOP. The resulting application is quite simple (1 class, 2 projects, few extension point contributions). However, thanks to the power of EATOP, it is really functional. To get started, we are going to configure EATOP to obtain an enhanced couple of navigator and form editor, that allow to navigate efficiently into models and open individually any model element.


Open EATOP perspective

In the main menu, select “Window > Open Perspective > Other”, and then select “EATOP”.


Create a EATOP project

  1. Open menu File > New > EATOP Project and click Next >
  2. Call it org.eclipse.sphinx.examples.library.ide and click Next >
  3. Disable option This plug-in will make contributions to the UI and click on Finish.

Back to the top