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

Sirius/Tutorials/DomainModelTutorial

< Sirius‎ | Tutorials
Revision as of 05:30, 3 August 2016 by Julien.dupont.obeo.fr (Talk | contribs) (How to create our Metamodel)

Overview

This tutorial explains how to create your first EMF Metamodel. This tutorial can be seen as the start of Sirius Starter Tutorial before Starter Tutorial.

We will create the basic family Metamodel

Create my first metamodel

Our metamod will have 4 concepts. These concepts will be the basics concepts about family.

The first concept is Family. A family has a name type of Estring.

A family contains members type of Person. A person has a name type of EString.

A person has 2 parents and many or no children.

Two concepts herited from Person are Man and Woman.

A person should have 1 father type of Man or/and 1 mother type of Woman or neither father nor mother.

To sum up, our metamodel have 4 concepts

  • Family
  • Person
  • Man
  • Woman

and 6 relations

  • members from Family to Person
  • children from Person to Person, with cardinality 0..*
  • parents from Person to Person with cardinality 0..2
  • father from Person to Man with cardinality 0..1
  • mother from Person to Woman with cardinality 0..1
  • an extend from Person for Man and Woman

Sirius tuto4 01.png

How to create our Metamodel

We will use Ecore Tools (based on EMF and Sirius) to create our Metamodel. You can find it here: EcoreTools site To install it, menu Help/Install New Software...

Sirius tuto4 02.png

Click on Add… button and fill the fields

Sirius tuto4 03.png

Click on Ok button

Sirius tuto4 04.png

Ckick on Next > and follow instructions.

After Sirius has restarted, in Model Explorer View, right click New->Other...

Sirius tuto4 05.png

In Ecore Modeling Framework select Ecore Modeling Project

Sirius tuto4 06.png

Name it org.eclipse.sirius.sample.basicfamily

Sirius tuto4 07.png

Click on Finish button, then select the Design viewpoint.

Sirius tuto4 08.png

Now you can use the palette to create the elements of the metamodel described previously. Click on Class in palette to create Family, Person, Man and Woman. The element Person is abstract.

Sirius tuto4 09.png

Click on Relation Composition in palette to create compostion named members between Family and Person.

Sirius tuto4 10.png

Click on Relation Bi-directional Reference in palette to create the bi directional reference named children and parents on Person

Sirius tuto4 11.png

Click on Relation SuperType in palette to create the inheritence between Mand and Person and Woman and Person

Sirius tuto4 12.png

You should obtain this metamodele

Sirius tuto4 13.png

For more informations about Ecore Tools modeler Links to blog post on best practices to create a metamodel:

How to generate the source code of the Metamodel

You should retrieve the basicfamily.ecore Ns URI. Open the basicfamily.ecore and select tab Model in properties view. Change the Ns URI to http://www.eclipse.org/sirius/sample/basicfamily

Sirius tuto4 14.png

Open the basicfamily.genmodel. This model allows EMF to generate the Java code corresponding to the metamodel.

Sirius tuto4 15.png

Right click on first model element and select Generate All

Sirius tuto4 16.png

The "Generate All" produces these elements :

  • The code src in org.eclipse.sirisus.sample.basicfamily
  • The MANIFEST.MF in the META-INF directory
  • The directory org.eclipse.sirisus.sample.basicfamily.edit
  • The directory org.eclipse.sirisus.sample.basicfamily.editor
  • The directory org.eclipse.sirisus.sample.basicfamily.tests

Sirius tuto4 17.png

How to test the metamodel

Launch a runtime to use the basic family concept.

In Model Explorer View, right click New->Other...

Sirius tuto4 18.png

In Eclipse Modeling Framework Example EMF Model Creation Wizards, select BasicFamily Model

Sirius tuto4 19.png

As you can see the BasicFamily Model have the default EMF icons. To change this icon, modifiy BasicfamilyModelFile.gif in /org.eclipse.sirisus.sample.basicfamily.editor/icons/full/obj16/

Replace by Sirius tuto4 20.gif

To obtain

Sirius tuto4 21.png

Warning For every icons changes, you must restart the sirius runtime to see change.

Click on Next> button to create a basicfamily model.

Select Model Object Family and click on Finish Button.

Sirius tuto4 22.png

To add element to model right click on Family element and select Man or Woman element.

Sirius tuto4 23.png

In properties view you can retrive element name and choose Parents or Children if elements are already present in model.

Sirius tuto4 24.png

You can also change the icon for Man, Woman and Family defined in /org.eclipse.sirisus.sample.basicfamily.edit/icons/full/obj16

  • Man by Sirius tuto4 25.gif
  • Woman by Sirius tuto4 26.gif
  • Family by Sirius tuto4 20.gif

To replace Sirius tuto4 27.png

By Sirius tuto4 28.png

Back to the top