Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo...

24
Eclipse Modeling Framework (EMF) Paweł Żalejko

Transcript of Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo...

Page 1: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Eclipse Modeling Framework (EMF)

Paweł Żalejko

Page 2: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Agenda

www.rec-global.com2

Model-Driven Development

What is EMF?

EMF demo - hello world

EMF demo - command stack & adapters

EMF demo - data binding & validation

EMF demo - generating UI editors

15-11-27

Page 3: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Agenda

www.rec-global.com3

Model-Driven Development

What is EMF?

EMF demo - hello world

EMF demo - command stack & adapters

EMF demo - data binding & validation

EMF demo - generating UI editors

15-11-27

Page 4: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Model-Driven Development

www.rec-global.com4 15-11-27

Page 5: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Model-Driven Development

www.rec-global.com5 15-11-27

Page 6: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Model-Driven DevelopmentClear visibility

Flexibility(models can be adjusted)

Fast & cost-effective

Leads to increased quality

Enforces architecture

Let’s programmers focus on the hard stuff

www.rec-global.com6 15-11-27

Page 7: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Agenda

www.rec-global.com7

Model-Driven Development

What is EMF?

EMF demo - hello world

EMF demo - command stack & adapters

EMF demo - data binding & validation

EMF demo - generating UI editors

15-11-27

Page 8: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

What is EMF?

Modeling framework

Code generator

Framework for building tools and applications based on a structured data model

www.rec-global.com8 15-11-27

Page 9: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF - frameworks

Persistence

CDO, EMFStore, Teneo

UI frameworks

EMF Forms

Graphical Modeling

GMF, Sirius

Textual Modeling

Xtext

And much more...

https://eclipse.org/modeling/

www.rec-global.com9 15-11-27

Page 10: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Agenda

www.rec-global.com10

Model-Driven Development

What is EMF?

EMF demo - hello world

EMF demo - command stack & adapters

EMF demo - data binding & validation

EMF demo - generating UI editors

15-11-27

Page 11: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF demo - hello world

Create a model

Eclipse Modeling IDE

Create a new Ecore Modeling Project

Generate the code

Generate an EMF editor

www.rec-global.com11 15-11-27

Page 12: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF – ecore & genmodel

Two files:

ecore - contains the information about the defined classes

genmodel - contains information for the code generation

www.rec-global.com12 15-11-27

Page 13: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

http://www.eclipse.org/emf/2002/GenModel

documentation

copyright

body

suppressedGetVisibility

suppressedSetVisibility

...

www.rec-global.com13 15-11-27

Page 14: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF – containment vs non containment

www.rec-global.com14 15-11-27

Page 15: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Object vs EObject

EObject is the root of all modeled objects

It provides support for the behaviors and features common to all modeled objects:

www.rec-global.com15 15-11-27

Reflection Content• eClass• eGet• eSet• ...

• eResource• eContainer• eContents• ...

Page 16: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF – Ecore Model

(meta) model of models :

EClass

EStructuralFeature

EAttribute

EReference

EOperation

EDataType

www.rec-global.com16 15-11-27

Page 17: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Agenda

www.rec-global.com17

Model-Driven Development

What is EMF?

EMF demo - hello world

EMF demo - command stack & adapters

EMF demo - data binding & validation

EMF demo - generating UI editors

15-11-27

Page 18: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF demo - command stack & adapters

Editing objects using commands

Undo/redo

Adapters as change listeners

www.rec-global.com18 15-11-27

Page 19: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Agenda

www.rec-global.com19

Model-Driven Development

What is EMF?

EMF demo - hello world

EMF demo - command stack & adapters

EMF demo - data binding & validation

EMF demo - generating UI editors

15-11-27

Page 20: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF demo - data binding & validation

Binding a model to UI controls

DataBindingContext

IObservableValue

UpdateValueStrategy

Validating inputs

Java

Object Constraint Language (OCL)

www.rec-global.com20 15-11-27

Page 21: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Agenda

www.rec-global.com21

Model-Driven Development

What is EMF?

EMF demo - hello world

EMF demo - command stack & adapters

EMF demo - data binding & validation

EMF demo - generating UI editors

15-11-27

Page 22: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF demo - generating a UI editor

A simple form-based editor created using EMF Forms framework

UI:

JavaFX

SWT

Eclipse RAP

http://www.eclipse.org/ecp/emfforms/

www.rec-global.com22 15-11-27

Page 23: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

EMF demo - generating a Sirius-based editor

Sirius:

„Sirius is an Eclipse project which allows you to easily create your own graphicalmodeling workbench by leveraging the Eclipse Modeling technologies, including EMF and GMF.”

https://eclipse.org/sirius/overview.html

www.rec-global.com23 15-11-27

Page 24: Eclipse Modeling Framework (EMF) - GitHub Pageszielona-gora-jug.github.io/files/EMF.pdf · EMF demo - generating a Sirius-based editor Sirius: „Sirius is an Eclipse project which

Thanks!

https://eclipse.org/modeling/

https://eclipse.org/modeling/emf/

http://www.eclipse.org/modeling/emf/docs/

http://www.eclipse.org/ecp/emfforms/

https://eclipse.org/sirius/overview.html

www.rec-global.com24 15-11-27