SlideShare a Scribd company logo
1 of 113
Download to read offline
Model Driven Engineering 
Department of Computer Science 
Slide 1 
The Eclipse Modeling (EMF) and Graphical Modeling (GMF) Frameworks 
Lecturer: Dimitris Kolovos
Model Driven Engineering 
Department of Computer Science 
Slide 2 
Lecture Objectives 
•Explore the Eclipse Modelling Framework 
–Defining metamodels using Ecore 
–Creating models that conform to Ecore metamodels 
•Reflectively 
•Through a dedicated tree-based editor 
•Explore the Eclipse Graphical Modeling Framework (GMF) 
–Capabilities, organisation, limitations 
•Demonstrate the Eugenia tool that simplifies the development of GMF editors 
–Annotations, polishing transformations
Model Driven Engineering 
Department of Computer Science 
Slide 3 
Eclipse Modeling Framework (EMF) 
Lecturer: Dimitris Kolovos
Model Driven Engineering 
Department of Computer Science 
Slide 4 
Eclipse Modeling Framework 
•Robust and proven modelling framework built on top of Eclipse 
–Since 2002 (open-sourced by IBM) 
–Used in many commercial products (e.g. IBM Rational Software Architect, Gentleware Apollo for DSLs, Obeo Designer) 
–Is the basis of the Eclipse modelling eco-system 
–De-facto standard for modelling in the Java world
Model Driven Engineering 
Department of Computer Science 
Slide 5 
Eclipse Modeling Framework 
•Supports the definition of metamodels using a dedicated metamodelling language (Ecore) 
•Supports the definition of models that conform to Ecore metamodels 
–Using graphical editors, generated Java code and a reflective API (more in the sequel) 
•Supports serialising and desialising models 
–In XMI by default, but supports pluggable model persistence formats 
•Provides a built-in model validation framework 
–Extensible, can support constraints expressed in Java or in dedicated constraint languages (e.g. EVL, OCL)
Model Driven Engineering 
Department of Computer Science 
Slide 6 
XML Metadata Interchange (XMI) 
•The default serialisation format for EMF models and metamodels 
•XML-based format standardised by the Object Management Group 
–Currently at version 2.0 
•XML based format 
–Basically, XML with built-in support for cross- references between XML (model) elements
Model Driven Engineering 
Department of Computer Science 
Slide 7 
ECORE
Model Driven Engineering 
Department of Computer Science 
Slide 8 
Ecore: EMF's metamodelling language 
•A dedicated language for constructing metamodels in EMF 
•An object-oriented language 
–EClasses, EAttributes, EReferences, Eoperations, EDataTypes, EEnum(erations) etc. 
•Supports multiple inheritance 
–Like C++, unlike Java 
•Self-defined 
–Ecore's metamodel is specified using Ecore
Model Driven Engineering 
Department of Computer Science 
Slide 9
Model Driven Engineering 
Department of Computer Science 
Slide 10 
EPackage 
•The top-level object of an Ecore file 
–In Ecore terminology metamodel === EPackage 
•Semantically similar to a Java package 
•Each EPackage has a name, a namespace URI and a prefix 
–nsURI (Namespace URI): Global EPackage identifier 
•Ideally, each EPackage in the world should have a unique nsURI 
–Prefix: No semantics. Only used for XMI serialisation 
•An EPackage can contain 
–EClasses and EDataTypes (both inherit from EClassifier) 
–Nested EPackages (highly discouraged as many EMF-based tools don't play well with these)
Model Driven Engineering 
Department of Computer Science 
Slide 11
Model Driven Engineering 
Department of Computer Science 
Slide 12 
EDataType 
•Represent primitive types 
•Ecore provides built-in support for some EDataTypes (EString, EInteger, EBoolean, EDouble) 
•Each EDataType needs to define the fully- qualified name of the Java class that can convert strings to instances of the data type and vice-versa
Model Driven Engineering 
Department of Computer Science 
Slide 13
Model Driven Engineering 
Department of Computer Science 
Slide 14 
EEnum 
•Semantically equivalent to a Java enumeration 
•Defines a fixed set of possible values (literals) 
•Each literal has a name and an integer value 
–Integer value is incremental starting from 0
Model Driven Engineering 
Department of Computer Science 
Slide 15
Model Driven Engineering 
Department of Computer Science 
Slide 16 
EClass 
•Semantically similar to a Java class 
•Can be instantiated to produce model elements 
–In the same way that Java classes can be instantiated to produce objects 
–Except if its abstract or interface properties are set to true (similar to Java) 
•Can inherit from multiple EClasses 
–Unlike Java classes 
•Can contain 
–(E)StructuralFeatures (EAttributes and EReferences) 
–EOperations
Model Driven Engineering 
Department of Computer Science 
Slide 17
Model Driven Engineering 
Department of Computer Science 
Slide 18 
EStructuralFeature 
•EAttributes and EReferences are collectively known as EStructuralFeatures 
–EAttributes: Provide slots for values of primitive types (EDataTypes, EEnum) 
–EReferences: Provide slots for model elements 
–They only denote structure, in contrast to EOperations which denote behaviour 
•Each EStructuralFeature has 
–a name 
–a type (eType) 
–a lower-bound and an upper-bound multiplicity e.g. 
•0..-1 (-1 means unbounded/*) 
•2..5 
•0..1
Model Driven Engineering 
Department of Computer Science 
Slide 19 
EStructuralFeature 
•EStructuralFeatures can be marked as 
–derived: the value of the feature is computed and cannot be changed directly by the user 
–volatile: the value of the feature is not persisted when the model is saved 
–transient: the value of the feature is recomputed every time it is requested
Model Driven Engineering 
Department of Computer Science 
Slide 20
Model Driven Engineering 
Department of Computer Science 
Slide 21 
EReference 
•Containment 
–If a model element is deleted from the model, any elements under its containment EReferences are also deleted 
–Each model element can belong to at most one containment EReference slot 
•eOpposite 
–Enables 2-way synchronisation between EReferences 
–Opposites need to be specified on both participating EReferences 
–The opposite of the opposite of an EReference must be the EReference itself
Model Driven Engineering 
Department of Computer Science 
Slide 22 
No Opposites 
class Node { 
ref Transition[*] outgoing; 
ref Transition[*] incoming; 
} 
class Transition { 
ref Node source; 
ref Node target; 
}
Model Driven Engineering 
Department of Computer Science 
Slide 23 
Added Opposites 
class Node { 
ref Transition[*]#source outgoing; 
ref Transition[*]#target incoming; 
} 
class Transition { 
ref Node#outgoing source; 
ref Node#incoming target; 
}
Model Driven Engineering 
Department of Computer Science 
Slide 24
Model Driven Engineering 
Department of Computer Science 
Slide 25 
EOperation 
•Semantically equivalent to a Java method 
•Has a name, typed parameters and a return type 
–The multiplicy of an EOperation (loweBound, upperBound inherited from ETypedElement) affect its return type 
•For example if the multiplicity of an operation is 0..* and its return type is EString, it means that the operation will return a list of Estrings 
•Ecore can only define the signatures of operations 
–Not their logic! 
–More on this shortly
Model Driven Engineering 
Department of Computer Science 
Slide 26 
DEFINING ECORE METAMODELS
Model Driven Engineering 
Department of Computer Science 
Slide 27 
Defining Ecore Metamodels 
•Many different options 
•Emfatic (recommended) 
–Textual syntax for Ecore metamodels 
•Tree-based Ecore editor 
–Default editor 
•Diagram-based Ecore editor 
•Xcore, OCLInEcore 
•Import from 
–Java interfaces 
–Rational rose 
–XML Schema
Model Driven Engineering 
Department of Computer Science 
Slide 28 
Emfatic 
•Textual language for defining Ecore metamodels 
–Very similar to Java 
•Supported by an Eclipse editor 
–Syntax highlighting 
–Error reporting 
–Outline view 
•Loss-less 2-way mapping between Emfatic <-> Ecore 
–You can generate an Ecore metamodel from an Emfatic file 
–You can generate an Emfatic file from an Ecore metamodel 
•Language reference 
–www.eclipse.org/epsilon/doc/articles/emfatic
Model Driven Engineering 
Department of Computer Science 
Slide 29 
Emfatic Editor
Model Driven Engineering 
Department of Computer Science 
Slide 30 
Emfatic->Ecore 
•Generate Ecore model in the context menu of .emf files
Model Driven Engineering 
Department of Computer Science 
Slide 31 
Ecore->Emfatic 
•Generate Emfatic Source in the context menu of .ecore files
Model Driven Engineering 
Department of Computer Science 
Slide 32 
Ecore Tree-based Editor 
•Works directly on Ecore files 
•Integrates with the Properties view to edit properties of selected metamodel elements 
•Robust but not particularly user-friendly
Model Driven Engineering 
Department of Computer Science 
Slide 33 
Ecore Tree-based Editor
Model Driven Engineering 
Department of Computer Science 
Slide 34 
Diagram-based Ecore Editor 
•Graphical editor for Ecore models 
•Stores information in 2 files 
–.ecore: The actual Ecore metamodel 
–.ecorediag: Contains information about the layout of the diagram only 
•Basic auto-layout capabilities 
•Modifying your Ecore model outside of the diagram-based editor may mean that you then have to redraw (parts of) the diagram 
•I only use it to visualise stable Ecore metamodels
Model Driven Engineering 
Department of Computer Science 
Slide 35 
Diagram-based Ecore Editor
Model Driven Engineering 
Department of Computer Science 
Slide 36 
Other alternatives 
•OCLInEcore 
–http://wiki.eclipse.org/OCL/OCLinEcore 
–Similar to Emfatic but with support for defining the implementation of derived attributes / operations using OCL 
•Xcore 
–http://wiki.eclipse.org/Xcore 
–Similar to OCLInEcore but uses a different language (Xbase) for defining the implementation of derived attributes / operations
Model Driven Engineering 
Department of Computer Science 
Slide 37 
Importing from Existing Artefacts 
•EMF provides import wizards for initialising Ecore metamodels from existing artefacts 
–Java interfaces, Rational Rose models, XML Schemas
Model Driven Engineering 
Department of Computer Science 
Slide 38 
Creating Models 
•Once you've defined your Ecore metamodel you'll want to create models that conform to it 
•You have (at least) 2 options 
–Create models in the same Eclipse workspace through EMF's reflective tree-based editor / API 
–Generate code / a dedicated tree-editor from your Ecore metamodel 
•To use the generated tree-editor you'll need to launch a new Eclipse instance from within Eclipse (more on this shortly)
Model Driven Engineering 
Department of Computer Science 
Slide 39 
CREATING MODELS IN THE SAME WORKSPACE
Model Driven Engineering 
Department of Computer Science 
Slide 40 
Metamodel Registration 
•Before you can create a model that conforms to your Ecore metamodel, you need to let EMF know about your Ecore metamodel 
–i.e. you need to register your metamodel 
•To register your Ecore metamodel, right-click on the .ecore file and select Register EPackages
Model Driven Engineering 
Department of Computer Science 
Slide 41 
The EMF Package Registry 
•When you do this 
–the .ecore file is parsed into an EPackage 
–the EPackage is stored in EMF's package registry (essentially a hash-map), using its nsURI as the key 
•To explore the metamodels that are currently registered in the EMF Package Registry, you can use the EPackage Registry view 
–Window->Show View->Other …
Model Driven Engineering 
Department of Computer Science 
Slide 42 
EPackage Registry View 
Tip: The EPackage Registry view does not auto-refresh. You will need to click the Refresh button (top-right corner) when you launch it for the first time, and every time you register new metamodels.
Model Driven Engineering 
Department of Computer Science 
Slide 43 
Creating Models 
•Once EMF knows about your metamodel, you can create models that conform to it using the File->New->EMF Model wizard 
•Need to provide 
–A filename 
–The nsURI of the metamodel your model should conform to 
–The type (EClass) of the root model element of your model
Model Driven Engineering 
Department of Computer Science 
Slide 44 
Creating Models
Model Driven Engineering 
Department of Computer Science 
Slide 45 
Editing Models in the Reflective Editor 
•Once you've created your model it will appear in a new tree-based editor 
•You can right-click elements of your model to create new children (for containment references) and use the properties view to change the values of attributes and non- containment references
Model Driven Engineering 
Department of Computer Science 
Slide 46 
Editing Models in the Reflective Editor
Model Driven Engineering 
Department of Computer Science 
Slide 47 
GENERATING A DEDICATED TREE- BASED EDITOR
Model Driven Engineering 
Department of Computer Science 
Slide 48 
Generating Code 
•EMF provides tooling that can consume an Ecore metamodel and generate 
–A Java API for your metamodel 
–A dedicated tree-based editor 
•The editor is an Eclipse plug-in project 
–You'll need to run a new Eclipse instance from within Eclipse to use it
Model Driven Engineering 
Department of Computer Science 
Slide 49 
Generating Code 
•2-step transformation 
–Ecore -> GenModel (Model-to-Model) 
–GenModel -> Java code (Model-to-Text) 
•GenModel 
–Intermediate model used to specify code generation options (e.g. which directory / Java package the code will be generated under) 
•Step-by-step instructions follow
Model Driven Engineering 
Department of Computer Science 
Slide 50
Model Driven Engineering 
Department of Computer Science 
Slide 51
Model Driven Engineering 
Department of Computer Science 
Slide 52
Model Driven Engineering 
Department of Computer Science 
Slide 53
Model Driven Engineering 
Department of Computer Science 
Slide 54
Model Driven Engineering 
Department of Computer Science 
Slide 55
Model Driven Engineering 
Department of Computer Science 
Slide 56
Model Driven Engineering 
Department of Computer Science 
Slide 57
Model Driven Engineering 
Department of Computer Science 
Slide 58
Model Driven Engineering 
Department of Computer Science 
Slide 59
Model Driven Engineering 
Department of Computer Science 
Slide 60 
The Generated Code 
•Java code will be added to the project containing your Ecore metamodel 
–Java interfaces and implementations for each EClass in your metamodel 
•3 new projects 
–.editor: A dedicated tree-based editor for your metamodel 
–.edit: Controls the behaviour of the Properties view 
•You will rarely need to worry about this one 
–.tests: JUnit tests
Model Driven Engineering 
Department of Computer Science 
Slide 61 
Modifying the Generated Code 
•To implement the behaviour of operations / derived properties 
•To change the appearance / functionality of the generated tree-based editor 
•Preserving code modifications 
–EMF-generated code annotates methods as @generated 
–If you modify the body of a method you can annotate it as @generated NOT and then EMF will preserve your modifications the next time it re-generates the code
Model Driven Engineering 
Department of Computer Science 
Slide 62 
Node.isStart() and Node.next 
•Our metamodel contains an operation and a derived reference 
–Node.isStart() operation 
–Node.nodes derived reference 
•By default, the code generated by EMF for these, throws an UnsupportedOperationException 
–i.e. we need to implement the logic of these methods
Model Driven Engineering 
Department of Computer Science 
Slide 63
Model Driven Engineering 
Department of Computer Science 
Slide 64 
Node.isStart() and Node.next 
•We need to define the logic of these 2 features by modifying the respective methods 
–and annotate the modified methods as @generated NOT so that EMF does not overwrite our code the next time it generates code from the same metamodel 
•@generated methods can also be safely modified in the remaining parts of the generated code (.edit, .editor projects) 
•TIP: Try not to write too much code in @generated NOT methods 
–Extract the complicated code into separate classes and call it from your @generated NOT methods
Model Driven Engineering 
Department of Computer Science 
Slide 65
Model Driven Engineering 
Department of Computer Science 
Slide 66 
Using your Generated Editor 
•The generated tree-based editor (.editor) project is an Eclipse plug-in 
•As such, to run it you need to run a new Eclipse instance from within Eclipse 
•You can then use File->New-><Your model type> to create models using the editor 
•Step-by-step instructions follow
Model Driven Engineering 
Department of Computer Science 
Slide 67
Model Driven Engineering 
Department of Computer Science 
Slide 68
Model Driven Engineering 
Department of Computer Science 
Slide 69
Model Driven Engineering 
Department of Computer Science 
Slide 70
Model Driven Engineering 
Department of Computer Science 
Slide 71
Model Driven Engineering 
Department of Computer Science 
Slide 72
Model Driven Engineering 
Department of Computer Science 
Slide 73
Model Driven Engineering 
Department of Computer Science 
Slide 74
Model Driven Engineering 
Department of Computer Science 
Slide 75
Model Driven Engineering 
Department of Computer Science 
Slide 76
Model Driven Engineering 
Department of Computer Science 
Slide 77
Model Driven Engineering 
Department of Computer Science 
Slide 78 
So far 
•Demonstrated defining Ecore metamodels 
•Demonstrated creating models that conform to an Ecore metamodel using 
–The reflective tree-based editor (same workspace) 
–The generated tree-based editor (requires new instance of Eclipse) 
•Tree-based editors are useful but they are not very usable 
•Next: developing diagram-based editors for your Ecore metamodels
Model Driven Engineering 
Department of Computer Science 
Slide 79 
Graphical Modeling Framework (GMF) and Eugenia 
Lecturer: Dimitris Kolovos
Model Driven Engineering 
Department of Computer Science 
Slide 80 
GMF 
Graphical Modeling Framework
Model Driven Engineering 
Department of Computer Science 
Slide 81 
Graphical Modeling Framework 
•GMF is a framework that enables the development of diagram-based editors for models conforming to Ecore metamodels 
–Builds atop EMF 
•GMF works in a generative manner 
–No reflective option 
–Need to launch a new Eclipse instance to use / test your graphical editor
Model Driven Engineering 
Department of Computer Science 
Slide 82
Model Driven Engineering 
Department of Computer Science 
Slide 83 
Graphical Modeling Framework 
•GMF needs additional information to generate a graphical editor e.g. 
–How different EClasses should be visualised (as nodes? connections?) 
–What labels should be attached to each diagram element (e.g. internal labels for nodes, external labels for connections)
Model Driven Engineering 
Department of Computer Science 
Slide 84 
Additional Models 
•GMF uses 3 additional models to specify this extra information 
–.gmfgraph: Defines the shapes involved the editor 
•e.g. the editor will contain rectangle and diamond nodes, and connections 
–.gmftool: Defines the tools in the editor palette 
•e.g. there will be 5 tools titled Action, Decision, Subflow, Trigger and Transition in the palette 
–.gmfmap: Defines how shapes and tools are mapped to constructs in the metamodel 
•e.g. The "Action" tool will create instances of the Action EClass which will be visualised as rectangle nodes on the diagram
Model Driven Engineering 
Department of Computer Science 
Slide 85 
Constructing the GMF-specific Models 
•GMF provides very little support for specifying the .gmfgraph, .gmftool and .gmfmap models 
–Tree-based editors, insufficient validation 
•These models are complex and interconnected 
–The .gmfmap model contains cross-references to the .gmfgraph, .gmtool and .ecore models
Model Driven Engineering 
Department of Computer Science 
Slide 86 
Generating the Diagram-based Editor 
•Once the .gmfgraph, .gmftool and .gmfmap models are in place, GMF provides a model-to- model transformation that creates a generator model from them (.gmfgen) 
–Provides additional customisation options for the editor 
•Then, a model-to-text transformation consumes the .gmfgen model and produces a new plug-in project (.diagram) that contains the Java code for the diagram-based editor
Model Driven Engineering 
Department of Computer Science 
Slide 87 
GMF Challenges 
•The GMF-specific models are notoriously hard to get right 
–The metamodels they conform to are large 
–Validation is not great (you may just end up with errors in the generated code or - even worse - with runtime exceptions in your editor) 
•If you modify your Ecore metamodel, you will need to update these models manually
Model Driven Engineering 
Department of Computer Science 
Slide 88 
EUGENIA
Model Driven Engineering 
Department of Computer Science 
Slide 89 
Eugenia 
•A tool that simplifies the development of GMF-based editors 
•Information about the graphical syntax of the language is embedded in the metamodel using readable annotations 
–Validation constraints (in EVL) catch common mistakes and provide sensible feedback 
•The GMF-specific models are generated automatically through a complex model-to-model transformation (in EOL) 
–The generated GMF-specific models can be fine-tuned using in-place transformations (in EOL)
Model Driven Engineering 
Department of Computer Science 
Slide 90 
Example: FlowchartExt (1/2) 
@namespace(uri="flowchartext", prefix="flowchart") 
package flowchartext; 
@gmf.diagram 
class Flowchart { 
val Node[*] nodes; 
val Transition[*] transitions; 
} 
@gmf.node(label="label") 
abstract class Node { 
attr String label; 
ref Transition[*]#source outgoing; 
ref Transition[*]#target incoming; 
}
Model Driven Engineering 
Department of Computer Science 
Slide 91 
Example: FlowchartExt (2/2) 
@gmf.link(label="label", source="source", target="target") 
class Transition { 
attr String label; 
ref Node#outgoing source; 
ref Node#incoming target; 
} 
class Subflow extends Flowchart, Node { } 
class Trigger extends Node { attr Date when; } 
class Action extends Node { } 
class Decision extends Node { } 
datatype Date : "java.util.Date";
Model Driven Engineering 
Department of Computer Science 
Slide 92 
Eugenia 
•Demonstrated only a small subset of the supported annotations 
•Complete list of annotations 
–http://eclipse.org/epsilon/doc/articles/eugenia- gmf-tutorial/
Model Driven Engineering 
Department of Computer Science 
Slide 93 
Generating a GMF Editor 
•That's everything! 
•You can now right-click your .emf metamodel and generate a fully-functional graphical editor 
•Once you've generated your editor, you'll need to run a new instance of Eclipse to use it 
–If you modify your metamodel, you will need to re-run Eugenia 
•Step-by-step instructions follow
Model Driven Engineering 
Department of Computer Science 
Slide 94
Model Driven Engineering 
Department of Computer Science 
Slide 95
Model Driven Engineering 
Department of Computer Science 
Slide 96
Model Driven Engineering 
Department of Computer Science 
Slide 97
Model Driven Engineering 
Department of Computer Science 
Slide 98
Model Driven Engineering 
Department of Computer Science 
Slide 99
Model Driven Engineering 
Department of Computer Science 
Slide 100
Model Driven Engineering 
Department of Computer Science 
Slide 101
Model Driven Engineering 
Department of Computer Science 
Slide 102
Model Driven Engineering 
Department of Computer Science 
Slide 103
Model Driven Engineering 
Department of Computer Science 
Slide 104
Model Driven Engineering 
Department of Computer Science 
Slide 105
Model Driven Engineering 
Department of Computer Science 
Slide 106
Model Driven Engineering 
Department of Computer Science 
Slide 107 
Polishing the Editor 
•Eugenia annotations only control a subset of GMF's capabilities 
–For example, there's no annotation that controls the weight of the font of a label 
–Otherwise, Eugenia would be as complex as GMF 
•Still, it is often useful to fine-tune the appearance of the generated editor
Model Driven Engineering 
Department of Computer Science 
Slide 108 
Polishing Transformations 
•Eugenia provides support for fine-tuning the generated editor through polishing transformations 
–Optional in-place transformations that can be placed next to your .emf metamodel 
–Modify the GMF-specific models generated by Eugenia 
•2 transformations 
–Ecore2GMF.eol: Can modify the .gmfgraph, .gmfmap and .gmftool models 
–FigGmfGen.eol: Can modify the .gmfgen model
Model Driven Engineering 
Department of Computer Science 
Slide 109 
Ecore2GMF.eol 
// Add bold font to action labels 
var actionLabel = GmfGraph!Label.all. 
selectOne(l|l.name="ActionLabelFigure"); 
actionLabel.font = new GmfGraph!BasicFont; 
actionLabel.font.style = 
GmfGraph!FontStyle#BOLD;
Model Driven Engineering 
Department of Computer Science 
Slide 110
Model Driven Engineering 
Department of Computer Science 
Slide 111 
Advanced Eugenia 
•Using images instead of shapes 
–http://eclipse.org/epsilon/doc/articles/eugenia-nodes-with- images/ 
•Nodes with images specified at runtime 
–http://eclipse.org/epsilon/doc/articles/eugenia-nodes-with- runtime-images/ 
•Phantom nodes 
–http://eclipse.org/epsilon/doc/articles/eugenia-phantom- nodes/ 
•Patching the generated code 
–http://eclipse.org/epsilon/doc/articles/eugenia-patching/ 
•Invoking Eugenia from ANT 
–http://eclipse.org/epsilon/doc/articles/eugenia-ant/
Model Driven Engineering 
Department of Computer Science 
Slide 112 
Other Graphical Modelling Frameworks 
•Sirius (builds on GMF's runtime) 
–www.eclipse.org/sirius 
•Graphiti 
–www.eclipse.org/graphiti
Model Driven Engineering 
Department of Computer Science 
Slide 113 
Lecture Summary 
•Explored the Eclipse Modelling Framework 
–Defining metamodels using Ecore 
–Creating models that conform to Ecore metamodels 
•Reflectively 
•Through a dedicated tree-based editor 
•Explored the Eclipse Graphical Modeling Framework (GMF) 
–Capabilities, organisation, limitations 
•Demonstrated the Eugenia tool that simplifies the development of GMF editors 
–Annotations, polishing transformations

More Related Content

What's hot

C# OOP Advanced Concepts
C# OOP Advanced ConceptsC# OOP Advanced Concepts
C# OOP Advanced Conceptsagni_agbc
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!Jakub Kubrynski
 
Advanced SQL Injection
Advanced SQL InjectionAdvanced SQL Injection
Advanced SQL Injectionamiable_indian
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XMLyht4ever
 
Php Error Handling
Php Error HandlingPhp Error Handling
Php Error Handlingmussawir20
 
Developing an ASP.NET Web Application
Developing an ASP.NET Web ApplicationDeveloping an ASP.NET Web Application
Developing an ASP.NET Web ApplicationRishi Kothari
 
Hibernate ppt
Hibernate pptHibernate ppt
Hibernate pptAneega
 
Spring boot Introduction
Spring boot IntroductionSpring boot Introduction
Spring boot IntroductionJeevesh Pandey
 
Hibernate
HibernateHibernate
HibernateAjay K
 
SQL - Structured query language introduction
SQL - Structured query language introductionSQL - Structured query language introduction
SQL - Structured query language introductionSmriti Jain
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS ArchitectureEyal Vardi
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in javaPratik Soares
 
Collections Api - Java
Collections Api - JavaCollections Api - Java
Collections Api - JavaDrishti Bhalla
 
Constraints In Sql
Constraints In SqlConstraints In Sql
Constraints In SqlAnurag
 

What's hot (20)

Index in sql server
Index in sql serverIndex in sql server
Index in sql server
 
C# OOP Advanced Concepts
C# OOP Advanced ConceptsC# OOP Advanced Concepts
C# OOP Advanced Concepts
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!
 
Advanced SQL Injection
Advanced SQL InjectionAdvanced SQL Injection
Advanced SQL Injection
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
 
Php Error Handling
Php Error HandlingPhp Error Handling
Php Error Handling
 
Developing an ASP.NET Web Application
Developing an ASP.NET Web ApplicationDeveloping an ASP.NET Web Application
Developing an ASP.NET Web Application
 
Introduction to Angularjs
Introduction to AngularjsIntroduction to Angularjs
Introduction to Angularjs
 
Hibernate ppt
Hibernate pptHibernate ppt
Hibernate ppt
 
Spring boot Introduction
Spring boot IntroductionSpring boot Introduction
Spring boot Introduction
 
Html ppt
Html pptHtml ppt
Html ppt
 
Hibernate
HibernateHibernate
Hibernate
 
Javascript Basic
Javascript BasicJavascript Basic
Javascript Basic
 
SQL - Structured query language introduction
SQL - Structured query language introductionSQL - Structured query language introduction
SQL - Structured query language introduction
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS Architecture
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
Java Collections Framework
Java Collections FrameworkJava Collections Framework
Java Collections Framework
 
Collections Api - Java
Collections Api - JavaCollections Api - Java
Collections Api - Java
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Constraints In Sql
Constraints In SqlConstraints In Sql
Constraints In Sql
 

Viewers also liked

Graphiti and GMF Compared
Graphiti and GMF ComparedGraphiti and GMF Compared
Graphiti and GMF Comparedkoentsje
 
GMF : Create your graphical DSL - EclipseCon 11
GMF : Create your graphical DSL - EclipseCon 11GMF : Create your graphical DSL - EclipseCon 11
GMF : Create your graphical DSL - EclipseCon 11Chauvin Mariot
 
EEF : Sexy Properties, Wizards and Views - EclipseCon 11
EEF : Sexy Properties, Wizards and Views - EclipseCon 11EEF : Sexy Properties, Wizards and Views - EclipseCon 11
EEF : Sexy Properties, Wizards and Views - EclipseCon 11Chauvin Mariot
 
Graphical Editing Framework (GEF) 101
Graphical Editing Framework (GEF) 101Graphical Editing Framework (GEF) 101
Graphical Editing Framework (GEF) 101danrubel
 
What every Eclipse developer should know about EMF - Tutorial at EclipseCon
What every Eclipse developer should know about EMF - Tutorial at EclipseConWhat every Eclipse developer should know about EMF - Tutorial at EclipseCon
What every Eclipse developer should know about EMF - Tutorial at EclipseConJonasHelming
 
Functional Reactive Programming / Compositional Event Systems
Functional Reactive Programming / Compositional Event SystemsFunctional Reactive Programming / Compositional Event Systems
Functional Reactive Programming / Compositional Event SystemsLeonardo Borges
 
What every Eclipse developer should know about EMF
What every Eclipse developer should know about EMFWhat every Eclipse developer should know about EMF
What every Eclipse developer should know about EMFPhilip Langer
 
Eclipse Summit 2008 Jcrm Demo V1.4
Eclipse Summit 2008 Jcrm Demo V1.4Eclipse Summit 2008 Jcrm Demo V1.4
Eclipse Summit 2008 Jcrm Demo V1.4guestc06d27
 
EclipseCon 2008: Fundamentals of the Eclipse Modeling Framework
EclipseCon 2008: Fundamentals of the Eclipse Modeling FrameworkEclipseCon 2008: Fundamentals of the Eclipse Modeling Framework
EclipseCon 2008: Fundamentals of the Eclipse Modeling FrameworkDave Steinberg
 
Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...
Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...
Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...Chauvin Mariot
 
Food technology GMF
Food technology GMFFood technology GMF
Food technology GMFMaryumah
 
EclipseCon 2006: Introduction to the Eclipse Modeling Framework
EclipseCon 2006: Introduction to the Eclipse Modeling FrameworkEclipseCon 2006: Introduction to the Eclipse Modeling Framework
EclipseCon 2006: Introduction to the Eclipse Modeling FrameworkDave Steinberg
 
The Eclipse Modeling Framework and MDA
The Eclipse Modeling Framework and MDAThe Eclipse Modeling Framework and MDA
The Eclipse Modeling Framework and MDAelliando dias
 
Combining Text and Graphics in Eclipse-based Modeling Tools
Combining Text and Graphics in Eclipse-based Modeling ToolsCombining Text and Graphics in Eclipse-based Modeling Tools
Combining Text and Graphics in Eclipse-based Modeling ToolsDr. Jan Köhnlein
 
What's up GMF Tooling?
What's up GMF Tooling?What's up GMF Tooling?
What's up GMF Tooling?Mickael Istria
 

Viewers also liked (20)

Graphiti and GMF Compared
Graphiti and GMF ComparedGraphiti and GMF Compared
Graphiti and GMF Compared
 
GMF : Create your graphical DSL - EclipseCon 11
GMF : Create your graphical DSL - EclipseCon 11GMF : Create your graphical DSL - EclipseCon 11
GMF : Create your graphical DSL - EclipseCon 11
 
EEF : Sexy Properties, Wizards and Views - EclipseCon 11
EEF : Sexy Properties, Wizards and Views - EclipseCon 11EEF : Sexy Properties, Wizards and Views - EclipseCon 11
EEF : Sexy Properties, Wizards and Views - EclipseCon 11
 
Graphical Editing Framework (GEF) 101
Graphical Editing Framework (GEF) 101Graphical Editing Framework (GEF) 101
Graphical Editing Framework (GEF) 101
 
GMF showcase
GMF showcaseGMF showcase
GMF showcase
 
What every Eclipse developer should know about EMF - Tutorial at EclipseCon
What every Eclipse developer should know about EMF - Tutorial at EclipseConWhat every Eclipse developer should know about EMF - Tutorial at EclipseCon
What every Eclipse developer should know about EMF - Tutorial at EclipseCon
 
Functional Reactive Programming / Compositional Event Systems
Functional Reactive Programming / Compositional Event SystemsFunctional Reactive Programming / Compositional Event Systems
Functional Reactive Programming / Compositional Event Systems
 
GMF
GMFGMF
GMF
 
What every Eclipse developer should know about EMF
What every Eclipse developer should know about EMFWhat every Eclipse developer should know about EMF
What every Eclipse developer should know about EMF
 
Eugenia
EugeniaEugenia
Eugenia
 
Eclipse Summit 2008 Jcrm Demo V1.4
Eclipse Summit 2008 Jcrm Demo V1.4Eclipse Summit 2008 Jcrm Demo V1.4
Eclipse Summit 2008 Jcrm Demo V1.4
 
EclipseCon 2008: Fundamentals of the Eclipse Modeling Framework
EclipseCon 2008: Fundamentals of the Eclipse Modeling FrameworkEclipseCon 2008: Fundamentals of the Eclipse Modeling Framework
EclipseCon 2008: Fundamentals of the Eclipse Modeling Framework
 
Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...
Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...
Mixing Diagram, Tree, Text, Table and Form editors to build a kick-ass modeli...
 
TMF meets GMF
TMF meets GMFTMF meets GMF
TMF meets GMF
 
Food technology GMF
Food technology GMFFood technology GMF
Food technology GMF
 
EclipseCon 2006: Introduction to the Eclipse Modeling Framework
EclipseCon 2006: Introduction to the Eclipse Modeling FrameworkEclipseCon 2006: Introduction to the Eclipse Modeling Framework
EclipseCon 2006: Introduction to the Eclipse Modeling Framework
 
The Eclipse Modeling Framework and MDA
The Eclipse Modeling Framework and MDAThe Eclipse Modeling Framework and MDA
The Eclipse Modeling Framework and MDA
 
Combining Text and Graphics in Eclipse-based Modeling Tools
Combining Text and Graphics in Eclipse-based Modeling ToolsCombining Text and Graphics in Eclipse-based Modeling Tools
Combining Text and Graphics in Eclipse-based Modeling Tools
 
Gmf
GmfGmf
Gmf
 
What's up GMF Tooling?
What's up GMF Tooling?What's up GMF Tooling?
What's up GMF Tooling?
 

Similar to Eclipse Modeling Framework (EMF) and Graphical Modeling Framework (GMF)

High-performance model queries
High-performance model queriesHigh-performance model queries
High-performance model queriesIstvan Rath
 
EMF-IncQuery presentation at TOOLS 2012
EMF-IncQuery presentation at TOOLS 2012EMF-IncQuery presentation at TOOLS 2012
EMF-IncQuery presentation at TOOLS 2012Istvan Rath
 
Learn about Eclipse e4 from Lars Vogel at SF-JUG
Learn about Eclipse e4 from Lars Vogel at SF-JUGLearn about Eclipse e4 from Lars Vogel at SF-JUG
Learn about Eclipse e4 from Lars Vogel at SF-JUGMarakana Inc.
 
Xcore meets IncQuery: How the New Generation of DSLs are Made
Xcore meets IncQuery: How the New Generation of DSLs are MadeXcore meets IncQuery: How the New Generation of DSLs are Made
Xcore meets IncQuery: How the New Generation of DSLs are MadeIstvan Rath
 
Modeling With Eclipse @SoftShake 2011
Modeling With Eclipse @SoftShake 2011Modeling With Eclipse @SoftShake 2011
Modeling With Eclipse @SoftShake 2011Mickael Istria
 
Eclipse e4 - Google Eclipse Day
Eclipse e4 - Google Eclipse DayEclipse e4 - Google Eclipse Day
Eclipse e4 - Google Eclipse DayLars Vogel
 
A Recommender System for Refining Ekeko/X Transformation
A Recommender System for Refining Ekeko/X TransformationA Recommender System for Refining Ekeko/X Transformation
A Recommender System for Refining Ekeko/X TransformationCoen De Roover
 
EGL Conference 2011 - EGL Open
EGL Conference 2011 - EGL OpenEGL Conference 2011 - EGL Open
EGL Conference 2011 - EGL OpenWill Smythe
 
Model Execution: Past, Present and Future
Model Execution: Past, Present and FutureModel Execution: Past, Present and Future
Model Execution: Past, Present and FutureBenoit Combemale
 
MDE=Model Driven Everything (Spanish Eclipse Day 2009)
MDE=Model Driven Everything (Spanish Eclipse Day 2009)MDE=Model Driven Everything (Spanish Eclipse Day 2009)
MDE=Model Driven Everything (Spanish Eclipse Day 2009)Jordi Cabot
 
EMF - The off beat path
EMF - The off beat pathEMF - The off beat path
EMF - The off beat path17thcamel
 
COMMitMDE'18: Eclipse Hawk: model repository querying as a service
COMMitMDE'18: Eclipse Hawk: model repository querying as a serviceCOMMitMDE'18: Eclipse Hawk: model repository querying as a service
COMMitMDE'18: Eclipse Hawk: model repository querying as a serviceAntonio García-Domínguez
 
SiriusCon 2015 - Breathe Life into Your Designer!
SiriusCon 2015 - Breathe Life into Your Designer!SiriusCon 2015 - Breathe Life into Your Designer!
SiriusCon 2015 - Breathe Life into Your Designer!melbats
 
EclipseCon 2007: Effective Use of the Eclipse Modeling Framework
EclipseCon 2007: Effective Use of the Eclipse Modeling FrameworkEclipseCon 2007: Effective Use of the Eclipse Modeling Framework
EclipseCon 2007: Effective Use of the Eclipse Modeling FrameworkDave Steinberg
 
A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...
A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...
A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...Lola Burgueño
 

Similar to Eclipse Modeling Framework (EMF) and Graphical Modeling Framework (GMF) (20)

ITU - MDD - EMF
ITU - MDD - EMFITU - MDD - EMF
ITU - MDD - EMF
 
High-performance model queries
High-performance model queriesHigh-performance model queries
High-performance model queries
 
EMF-IncQuery presentation at TOOLS 2012
EMF-IncQuery presentation at TOOLS 2012EMF-IncQuery presentation at TOOLS 2012
EMF-IncQuery presentation at TOOLS 2012
 
Eclipse e4
Eclipse e4Eclipse e4
Eclipse e4
 
Learn about Eclipse e4 from Lars Vogel at SF-JUG
Learn about Eclipse e4 from Lars Vogel at SF-JUGLearn about Eclipse e4 from Lars Vogel at SF-JUG
Learn about Eclipse e4 from Lars Vogel at SF-JUG
 
Xcore meets IncQuery: How the New Generation of DSLs are Made
Xcore meets IncQuery: How the New Generation of DSLs are MadeXcore meets IncQuery: How the New Generation of DSLs are Made
Xcore meets IncQuery: How the New Generation of DSLs are Made
 
Modeling With Eclipse @SoftShake 2011
Modeling With Eclipse @SoftShake 2011Modeling With Eclipse @SoftShake 2011
Modeling With Eclipse @SoftShake 2011
 
Eclipse e4 - Google Eclipse Day
Eclipse e4 - Google Eclipse DayEclipse e4 - Google Eclipse Day
Eclipse e4 - Google Eclipse Day
 
e4 Webinar - Toolkit Model
e4 Webinar - Toolkit Modele4 Webinar - Toolkit Model
e4 Webinar - Toolkit Model
 
A Recommender System for Refining Ekeko/X Transformation
A Recommender System for Refining Ekeko/X TransformationA Recommender System for Refining Ekeko/X Transformation
A Recommender System for Refining Ekeko/X Transformation
 
EGL Conference 2011 - EGL Open
EGL Conference 2011 - EGL OpenEGL Conference 2011 - EGL Open
EGL Conference 2011 - EGL Open
 
Model Execution: Past, Present and Future
Model Execution: Past, Present and FutureModel Execution: Past, Present and Future
Model Execution: Past, Present and Future
 
ALT
ALTALT
ALT
 
MDE=Model Driven Everything (Spanish Eclipse Day 2009)
MDE=Model Driven Everything (Spanish Eclipse Day 2009)MDE=Model Driven Everything (Spanish Eclipse Day 2009)
MDE=Model Driven Everything (Spanish Eclipse Day 2009)
 
CoreML
CoreMLCoreML
CoreML
 
EMF - The off beat path
EMF - The off beat pathEMF - The off beat path
EMF - The off beat path
 
COMMitMDE'18: Eclipse Hawk: model repository querying as a service
COMMitMDE'18: Eclipse Hawk: model repository querying as a serviceCOMMitMDE'18: Eclipse Hawk: model repository querying as a service
COMMitMDE'18: Eclipse Hawk: model repository querying as a service
 
SiriusCon 2015 - Breathe Life into Your Designer!
SiriusCon 2015 - Breathe Life into Your Designer!SiriusCon 2015 - Breathe Life into Your Designer!
SiriusCon 2015 - Breathe Life into Your Designer!
 
EclipseCon 2007: Effective Use of the Eclipse Modeling Framework
EclipseCon 2007: Effective Use of the Eclipse Modeling FrameworkEclipseCon 2007: Effective Use of the Eclipse Modeling Framework
EclipseCon 2007: Effective Use of the Eclipse Modeling Framework
 
A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...
A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...
A Generic Neural Network Architecture to Infer Heterogeneous Model Transforma...
 

More from Dimitris Kolovos

Picto: Model Visualisation via M2T Transformation
Picto: Model Visualisation via M2T TransformationPicto: Model Visualisation via M2T Transformation
Picto: Model Visualisation via M2T TransformationDimitris Kolovos
 
The Epsilon Pattern Language
The Epsilon Pattern LanguageThe Epsilon Pattern Language
The Epsilon Pattern LanguageDimitris Kolovos
 
Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...
Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...
Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...Dimitris Kolovos
 
Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...
Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...
Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...Dimitris Kolovos
 
Partial Loading of XMI Models
Partial Loading of XMI ModelsPartial Loading of XMI Models
Partial Loading of XMI ModelsDimitris Kolovos
 
Merging Models with the Epsilon Merging Language - A Decade Later
Merging Models with the Epsilon Merging Language - A Decade LaterMerging Models with the Epsilon Merging Language - A Decade Later
Merging Models with the Epsilon Merging Language - A Decade LaterDimitris Kolovos
 
Assessing the Use of Eclipse MDE Technologies in Open-Source Software Projects
Assessing the Use of Eclipse MDE Technologies in Open-Source Software ProjectsAssessing the Use of Eclipse MDE Technologies in Open-Source Software Projects
Assessing the Use of Eclipse MDE Technologies in Open-Source Software ProjectsDimitris Kolovos
 
Code Generation as a Service
Code Generation as a ServiceCode Generation as a Service
Code Generation as a ServiceDimitris Kolovos
 
Eclipse Modellng Forums: Looking at the Data
Eclipse Modellng Forums: Looking at the DataEclipse Modellng Forums: Looking at the Data
Eclipse Modellng Forums: Looking at the DataDimitris Kolovos
 
Adding Spreadsheets to the MDE Toolbox
Adding Spreadsheets to the MDE ToolboxAdding Spreadsheets to the MDE Toolbox
Adding Spreadsheets to the MDE ToolboxDimitris Kolovos
 
Programmatic Muddle Management
Programmatic Muddle ManagementProgrammatic Muddle Management
Programmatic Muddle ManagementDimitris Kolovos
 
Managing XML documents with Epsilon
Managing XML documents with EpsilonManaging XML documents with Epsilon
Managing XML documents with EpsilonDimitris Kolovos
 
COMPASS Early Safety Warning System (ESWS)
COMPASS Early Safety Warning System (ESWS)COMPASS Early Safety Warning System (ESWS)
COMPASS Early Safety Warning System (ESWS)Dimitris Kolovos
 

More from Dimitris Kolovos (14)

Picto: Model Visualisation via M2T Transformation
Picto: Model Visualisation via M2T TransformationPicto: Model Visualisation via M2T Transformation
Picto: Model Visualisation via M2T Transformation
 
The Epsilon Pattern Language
The Epsilon Pattern LanguageThe Epsilon Pattern Language
The Epsilon Pattern Language
 
Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...
Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...
Developing a new Epsilon Language through Grammar Extension: The Epsilon Dem...
 
Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...
Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...
Re-Implementing Apache Thrift using Model-Driven Engineering Technologies: An...
 
Partial Loading of XMI Models
Partial Loading of XMI ModelsPartial Loading of XMI Models
Partial Loading of XMI Models
 
Merging Models with the Epsilon Merging Language - A Decade Later
Merging Models with the Epsilon Merging Language - A Decade LaterMerging Models with the Epsilon Merging Language - A Decade Later
Merging Models with the Epsilon Merging Language - A Decade Later
 
Assessing the Use of Eclipse MDE Technologies in Open-Source Software Projects
Assessing the Use of Eclipse MDE Technologies in Open-Source Software ProjectsAssessing the Use of Eclipse MDE Technologies in Open-Source Software Projects
Assessing the Use of Eclipse MDE Technologies in Open-Source Software Projects
 
Code Generation as a Service
Code Generation as a ServiceCode Generation as a Service
Code Generation as a Service
 
Eclipse Modellng Forums: Looking at the Data
Eclipse Modellng Forums: Looking at the DataEclipse Modellng Forums: Looking at the Data
Eclipse Modellng Forums: Looking at the Data
 
Adding Spreadsheets to the MDE Toolbox
Adding Spreadsheets to the MDE ToolboxAdding Spreadsheets to the MDE Toolbox
Adding Spreadsheets to the MDE Toolbox
 
Programmatic Muddle Management
Programmatic Muddle ManagementProgrammatic Muddle Management
Programmatic Muddle Management
 
Managing XML documents with Epsilon
Managing XML documents with EpsilonManaging XML documents with Epsilon
Managing XML documents with Epsilon
 
Epsilon
EpsilonEpsilon
Epsilon
 
COMPASS Early Safety Warning System (ESWS)
COMPASS Early Safety Warning System (ESWS)COMPASS Early Safety Warning System (ESWS)
COMPASS Early Safety Warning System (ESWS)
 

Recently uploaded

英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作qr0udbr0
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024StefanoLambiase
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfIdiosysTechnologies1
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
Xen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfXen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfStefano Stabellini
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfFerryKemperman
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaHanief Utama
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Cizo Technology Services
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...confluent
 
Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commercemanigoyal112
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 

Recently uploaded (20)

英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdf
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
Xen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfXen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdf
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdf
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
Advantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your BusinessAdvantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your Business
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief Utama
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
 
Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commerce
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 

Eclipse Modeling Framework (EMF) and Graphical Modeling Framework (GMF)

  • 1. Model Driven Engineering Department of Computer Science Slide 1 The Eclipse Modeling (EMF) and Graphical Modeling (GMF) Frameworks Lecturer: Dimitris Kolovos
  • 2. Model Driven Engineering Department of Computer Science Slide 2 Lecture Objectives •Explore the Eclipse Modelling Framework –Defining metamodels using Ecore –Creating models that conform to Ecore metamodels •Reflectively •Through a dedicated tree-based editor •Explore the Eclipse Graphical Modeling Framework (GMF) –Capabilities, organisation, limitations •Demonstrate the Eugenia tool that simplifies the development of GMF editors –Annotations, polishing transformations
  • 3. Model Driven Engineering Department of Computer Science Slide 3 Eclipse Modeling Framework (EMF) Lecturer: Dimitris Kolovos
  • 4. Model Driven Engineering Department of Computer Science Slide 4 Eclipse Modeling Framework •Robust and proven modelling framework built on top of Eclipse –Since 2002 (open-sourced by IBM) –Used in many commercial products (e.g. IBM Rational Software Architect, Gentleware Apollo for DSLs, Obeo Designer) –Is the basis of the Eclipse modelling eco-system –De-facto standard for modelling in the Java world
  • 5. Model Driven Engineering Department of Computer Science Slide 5 Eclipse Modeling Framework •Supports the definition of metamodels using a dedicated metamodelling language (Ecore) •Supports the definition of models that conform to Ecore metamodels –Using graphical editors, generated Java code and a reflective API (more in the sequel) •Supports serialising and desialising models –In XMI by default, but supports pluggable model persistence formats •Provides a built-in model validation framework –Extensible, can support constraints expressed in Java or in dedicated constraint languages (e.g. EVL, OCL)
  • 6. Model Driven Engineering Department of Computer Science Slide 6 XML Metadata Interchange (XMI) •The default serialisation format for EMF models and metamodels •XML-based format standardised by the Object Management Group –Currently at version 2.0 •XML based format –Basically, XML with built-in support for cross- references between XML (model) elements
  • 7. Model Driven Engineering Department of Computer Science Slide 7 ECORE
  • 8. Model Driven Engineering Department of Computer Science Slide 8 Ecore: EMF's metamodelling language •A dedicated language for constructing metamodels in EMF •An object-oriented language –EClasses, EAttributes, EReferences, Eoperations, EDataTypes, EEnum(erations) etc. •Supports multiple inheritance –Like C++, unlike Java •Self-defined –Ecore's metamodel is specified using Ecore
  • 9. Model Driven Engineering Department of Computer Science Slide 9
  • 10. Model Driven Engineering Department of Computer Science Slide 10 EPackage •The top-level object of an Ecore file –In Ecore terminology metamodel === EPackage •Semantically similar to a Java package •Each EPackage has a name, a namespace URI and a prefix –nsURI (Namespace URI): Global EPackage identifier •Ideally, each EPackage in the world should have a unique nsURI –Prefix: No semantics. Only used for XMI serialisation •An EPackage can contain –EClasses and EDataTypes (both inherit from EClassifier) –Nested EPackages (highly discouraged as many EMF-based tools don't play well with these)
  • 11. Model Driven Engineering Department of Computer Science Slide 11
  • 12. Model Driven Engineering Department of Computer Science Slide 12 EDataType •Represent primitive types •Ecore provides built-in support for some EDataTypes (EString, EInteger, EBoolean, EDouble) •Each EDataType needs to define the fully- qualified name of the Java class that can convert strings to instances of the data type and vice-versa
  • 13. Model Driven Engineering Department of Computer Science Slide 13
  • 14. Model Driven Engineering Department of Computer Science Slide 14 EEnum •Semantically equivalent to a Java enumeration •Defines a fixed set of possible values (literals) •Each literal has a name and an integer value –Integer value is incremental starting from 0
  • 15. Model Driven Engineering Department of Computer Science Slide 15
  • 16. Model Driven Engineering Department of Computer Science Slide 16 EClass •Semantically similar to a Java class •Can be instantiated to produce model elements –In the same way that Java classes can be instantiated to produce objects –Except if its abstract or interface properties are set to true (similar to Java) •Can inherit from multiple EClasses –Unlike Java classes •Can contain –(E)StructuralFeatures (EAttributes and EReferences) –EOperations
  • 17. Model Driven Engineering Department of Computer Science Slide 17
  • 18. Model Driven Engineering Department of Computer Science Slide 18 EStructuralFeature •EAttributes and EReferences are collectively known as EStructuralFeatures –EAttributes: Provide slots for values of primitive types (EDataTypes, EEnum) –EReferences: Provide slots for model elements –They only denote structure, in contrast to EOperations which denote behaviour •Each EStructuralFeature has –a name –a type (eType) –a lower-bound and an upper-bound multiplicity e.g. •0..-1 (-1 means unbounded/*) •2..5 •0..1
  • 19. Model Driven Engineering Department of Computer Science Slide 19 EStructuralFeature •EStructuralFeatures can be marked as –derived: the value of the feature is computed and cannot be changed directly by the user –volatile: the value of the feature is not persisted when the model is saved –transient: the value of the feature is recomputed every time it is requested
  • 20. Model Driven Engineering Department of Computer Science Slide 20
  • 21. Model Driven Engineering Department of Computer Science Slide 21 EReference •Containment –If a model element is deleted from the model, any elements under its containment EReferences are also deleted –Each model element can belong to at most one containment EReference slot •eOpposite –Enables 2-way synchronisation between EReferences –Opposites need to be specified on both participating EReferences –The opposite of the opposite of an EReference must be the EReference itself
  • 22. Model Driven Engineering Department of Computer Science Slide 22 No Opposites class Node { ref Transition[*] outgoing; ref Transition[*] incoming; } class Transition { ref Node source; ref Node target; }
  • 23. Model Driven Engineering Department of Computer Science Slide 23 Added Opposites class Node { ref Transition[*]#source outgoing; ref Transition[*]#target incoming; } class Transition { ref Node#outgoing source; ref Node#incoming target; }
  • 24. Model Driven Engineering Department of Computer Science Slide 24
  • 25. Model Driven Engineering Department of Computer Science Slide 25 EOperation •Semantically equivalent to a Java method •Has a name, typed parameters and a return type –The multiplicy of an EOperation (loweBound, upperBound inherited from ETypedElement) affect its return type •For example if the multiplicity of an operation is 0..* and its return type is EString, it means that the operation will return a list of Estrings •Ecore can only define the signatures of operations –Not their logic! –More on this shortly
  • 26. Model Driven Engineering Department of Computer Science Slide 26 DEFINING ECORE METAMODELS
  • 27. Model Driven Engineering Department of Computer Science Slide 27 Defining Ecore Metamodels •Many different options •Emfatic (recommended) –Textual syntax for Ecore metamodels •Tree-based Ecore editor –Default editor •Diagram-based Ecore editor •Xcore, OCLInEcore •Import from –Java interfaces –Rational rose –XML Schema
  • 28. Model Driven Engineering Department of Computer Science Slide 28 Emfatic •Textual language for defining Ecore metamodels –Very similar to Java •Supported by an Eclipse editor –Syntax highlighting –Error reporting –Outline view •Loss-less 2-way mapping between Emfatic <-> Ecore –You can generate an Ecore metamodel from an Emfatic file –You can generate an Emfatic file from an Ecore metamodel •Language reference –www.eclipse.org/epsilon/doc/articles/emfatic
  • 29. Model Driven Engineering Department of Computer Science Slide 29 Emfatic Editor
  • 30. Model Driven Engineering Department of Computer Science Slide 30 Emfatic->Ecore •Generate Ecore model in the context menu of .emf files
  • 31. Model Driven Engineering Department of Computer Science Slide 31 Ecore->Emfatic •Generate Emfatic Source in the context menu of .ecore files
  • 32. Model Driven Engineering Department of Computer Science Slide 32 Ecore Tree-based Editor •Works directly on Ecore files •Integrates with the Properties view to edit properties of selected metamodel elements •Robust but not particularly user-friendly
  • 33. Model Driven Engineering Department of Computer Science Slide 33 Ecore Tree-based Editor
  • 34. Model Driven Engineering Department of Computer Science Slide 34 Diagram-based Ecore Editor •Graphical editor for Ecore models •Stores information in 2 files –.ecore: The actual Ecore metamodel –.ecorediag: Contains information about the layout of the diagram only •Basic auto-layout capabilities •Modifying your Ecore model outside of the diagram-based editor may mean that you then have to redraw (parts of) the diagram •I only use it to visualise stable Ecore metamodels
  • 35. Model Driven Engineering Department of Computer Science Slide 35 Diagram-based Ecore Editor
  • 36. Model Driven Engineering Department of Computer Science Slide 36 Other alternatives •OCLInEcore –http://wiki.eclipse.org/OCL/OCLinEcore –Similar to Emfatic but with support for defining the implementation of derived attributes / operations using OCL •Xcore –http://wiki.eclipse.org/Xcore –Similar to OCLInEcore but uses a different language (Xbase) for defining the implementation of derived attributes / operations
  • 37. Model Driven Engineering Department of Computer Science Slide 37 Importing from Existing Artefacts •EMF provides import wizards for initialising Ecore metamodels from existing artefacts –Java interfaces, Rational Rose models, XML Schemas
  • 38. Model Driven Engineering Department of Computer Science Slide 38 Creating Models •Once you've defined your Ecore metamodel you'll want to create models that conform to it •You have (at least) 2 options –Create models in the same Eclipse workspace through EMF's reflective tree-based editor / API –Generate code / a dedicated tree-editor from your Ecore metamodel •To use the generated tree-editor you'll need to launch a new Eclipse instance from within Eclipse (more on this shortly)
  • 39. Model Driven Engineering Department of Computer Science Slide 39 CREATING MODELS IN THE SAME WORKSPACE
  • 40. Model Driven Engineering Department of Computer Science Slide 40 Metamodel Registration •Before you can create a model that conforms to your Ecore metamodel, you need to let EMF know about your Ecore metamodel –i.e. you need to register your metamodel •To register your Ecore metamodel, right-click on the .ecore file and select Register EPackages
  • 41. Model Driven Engineering Department of Computer Science Slide 41 The EMF Package Registry •When you do this –the .ecore file is parsed into an EPackage –the EPackage is stored in EMF's package registry (essentially a hash-map), using its nsURI as the key •To explore the metamodels that are currently registered in the EMF Package Registry, you can use the EPackage Registry view –Window->Show View->Other …
  • 42. Model Driven Engineering Department of Computer Science Slide 42 EPackage Registry View Tip: The EPackage Registry view does not auto-refresh. You will need to click the Refresh button (top-right corner) when you launch it for the first time, and every time you register new metamodels.
  • 43. Model Driven Engineering Department of Computer Science Slide 43 Creating Models •Once EMF knows about your metamodel, you can create models that conform to it using the File->New->EMF Model wizard •Need to provide –A filename –The nsURI of the metamodel your model should conform to –The type (EClass) of the root model element of your model
  • 44. Model Driven Engineering Department of Computer Science Slide 44 Creating Models
  • 45. Model Driven Engineering Department of Computer Science Slide 45 Editing Models in the Reflective Editor •Once you've created your model it will appear in a new tree-based editor •You can right-click elements of your model to create new children (for containment references) and use the properties view to change the values of attributes and non- containment references
  • 46. Model Driven Engineering Department of Computer Science Slide 46 Editing Models in the Reflective Editor
  • 47. Model Driven Engineering Department of Computer Science Slide 47 GENERATING A DEDICATED TREE- BASED EDITOR
  • 48. Model Driven Engineering Department of Computer Science Slide 48 Generating Code •EMF provides tooling that can consume an Ecore metamodel and generate –A Java API for your metamodel –A dedicated tree-based editor •The editor is an Eclipse plug-in project –You'll need to run a new Eclipse instance from within Eclipse to use it
  • 49. Model Driven Engineering Department of Computer Science Slide 49 Generating Code •2-step transformation –Ecore -> GenModel (Model-to-Model) –GenModel -> Java code (Model-to-Text) •GenModel –Intermediate model used to specify code generation options (e.g. which directory / Java package the code will be generated under) •Step-by-step instructions follow
  • 50. Model Driven Engineering Department of Computer Science Slide 50
  • 51. Model Driven Engineering Department of Computer Science Slide 51
  • 52. Model Driven Engineering Department of Computer Science Slide 52
  • 53. Model Driven Engineering Department of Computer Science Slide 53
  • 54. Model Driven Engineering Department of Computer Science Slide 54
  • 55. Model Driven Engineering Department of Computer Science Slide 55
  • 56. Model Driven Engineering Department of Computer Science Slide 56
  • 57. Model Driven Engineering Department of Computer Science Slide 57
  • 58. Model Driven Engineering Department of Computer Science Slide 58
  • 59. Model Driven Engineering Department of Computer Science Slide 59
  • 60. Model Driven Engineering Department of Computer Science Slide 60 The Generated Code •Java code will be added to the project containing your Ecore metamodel –Java interfaces and implementations for each EClass in your metamodel •3 new projects –.editor: A dedicated tree-based editor for your metamodel –.edit: Controls the behaviour of the Properties view •You will rarely need to worry about this one –.tests: JUnit tests
  • 61. Model Driven Engineering Department of Computer Science Slide 61 Modifying the Generated Code •To implement the behaviour of operations / derived properties •To change the appearance / functionality of the generated tree-based editor •Preserving code modifications –EMF-generated code annotates methods as @generated –If you modify the body of a method you can annotate it as @generated NOT and then EMF will preserve your modifications the next time it re-generates the code
  • 62. Model Driven Engineering Department of Computer Science Slide 62 Node.isStart() and Node.next •Our metamodel contains an operation and a derived reference –Node.isStart() operation –Node.nodes derived reference •By default, the code generated by EMF for these, throws an UnsupportedOperationException –i.e. we need to implement the logic of these methods
  • 63. Model Driven Engineering Department of Computer Science Slide 63
  • 64. Model Driven Engineering Department of Computer Science Slide 64 Node.isStart() and Node.next •We need to define the logic of these 2 features by modifying the respective methods –and annotate the modified methods as @generated NOT so that EMF does not overwrite our code the next time it generates code from the same metamodel •@generated methods can also be safely modified in the remaining parts of the generated code (.edit, .editor projects) •TIP: Try not to write too much code in @generated NOT methods –Extract the complicated code into separate classes and call it from your @generated NOT methods
  • 65. Model Driven Engineering Department of Computer Science Slide 65
  • 66. Model Driven Engineering Department of Computer Science Slide 66 Using your Generated Editor •The generated tree-based editor (.editor) project is an Eclipse plug-in •As such, to run it you need to run a new Eclipse instance from within Eclipse •You can then use File->New-><Your model type> to create models using the editor •Step-by-step instructions follow
  • 67. Model Driven Engineering Department of Computer Science Slide 67
  • 68. Model Driven Engineering Department of Computer Science Slide 68
  • 69. Model Driven Engineering Department of Computer Science Slide 69
  • 70. Model Driven Engineering Department of Computer Science Slide 70
  • 71. Model Driven Engineering Department of Computer Science Slide 71
  • 72. Model Driven Engineering Department of Computer Science Slide 72
  • 73. Model Driven Engineering Department of Computer Science Slide 73
  • 74. Model Driven Engineering Department of Computer Science Slide 74
  • 75. Model Driven Engineering Department of Computer Science Slide 75
  • 76. Model Driven Engineering Department of Computer Science Slide 76
  • 77. Model Driven Engineering Department of Computer Science Slide 77
  • 78. Model Driven Engineering Department of Computer Science Slide 78 So far •Demonstrated defining Ecore metamodels •Demonstrated creating models that conform to an Ecore metamodel using –The reflective tree-based editor (same workspace) –The generated tree-based editor (requires new instance of Eclipse) •Tree-based editors are useful but they are not very usable •Next: developing diagram-based editors for your Ecore metamodels
  • 79. Model Driven Engineering Department of Computer Science Slide 79 Graphical Modeling Framework (GMF) and Eugenia Lecturer: Dimitris Kolovos
  • 80. Model Driven Engineering Department of Computer Science Slide 80 GMF Graphical Modeling Framework
  • 81. Model Driven Engineering Department of Computer Science Slide 81 Graphical Modeling Framework •GMF is a framework that enables the development of diagram-based editors for models conforming to Ecore metamodels –Builds atop EMF •GMF works in a generative manner –No reflective option –Need to launch a new Eclipse instance to use / test your graphical editor
  • 82. Model Driven Engineering Department of Computer Science Slide 82
  • 83. Model Driven Engineering Department of Computer Science Slide 83 Graphical Modeling Framework •GMF needs additional information to generate a graphical editor e.g. –How different EClasses should be visualised (as nodes? connections?) –What labels should be attached to each diagram element (e.g. internal labels for nodes, external labels for connections)
  • 84. Model Driven Engineering Department of Computer Science Slide 84 Additional Models •GMF uses 3 additional models to specify this extra information –.gmfgraph: Defines the shapes involved the editor •e.g. the editor will contain rectangle and diamond nodes, and connections –.gmftool: Defines the tools in the editor palette •e.g. there will be 5 tools titled Action, Decision, Subflow, Trigger and Transition in the palette –.gmfmap: Defines how shapes and tools are mapped to constructs in the metamodel •e.g. The "Action" tool will create instances of the Action EClass which will be visualised as rectangle nodes on the diagram
  • 85. Model Driven Engineering Department of Computer Science Slide 85 Constructing the GMF-specific Models •GMF provides very little support for specifying the .gmfgraph, .gmftool and .gmfmap models –Tree-based editors, insufficient validation •These models are complex and interconnected –The .gmfmap model contains cross-references to the .gmfgraph, .gmtool and .ecore models
  • 86. Model Driven Engineering Department of Computer Science Slide 86 Generating the Diagram-based Editor •Once the .gmfgraph, .gmftool and .gmfmap models are in place, GMF provides a model-to- model transformation that creates a generator model from them (.gmfgen) –Provides additional customisation options for the editor •Then, a model-to-text transformation consumes the .gmfgen model and produces a new plug-in project (.diagram) that contains the Java code for the diagram-based editor
  • 87. Model Driven Engineering Department of Computer Science Slide 87 GMF Challenges •The GMF-specific models are notoriously hard to get right –The metamodels they conform to are large –Validation is not great (you may just end up with errors in the generated code or - even worse - with runtime exceptions in your editor) •If you modify your Ecore metamodel, you will need to update these models manually
  • 88. Model Driven Engineering Department of Computer Science Slide 88 EUGENIA
  • 89. Model Driven Engineering Department of Computer Science Slide 89 Eugenia •A tool that simplifies the development of GMF-based editors •Information about the graphical syntax of the language is embedded in the metamodel using readable annotations –Validation constraints (in EVL) catch common mistakes and provide sensible feedback •The GMF-specific models are generated automatically through a complex model-to-model transformation (in EOL) –The generated GMF-specific models can be fine-tuned using in-place transformations (in EOL)
  • 90. Model Driven Engineering Department of Computer Science Slide 90 Example: FlowchartExt (1/2) @namespace(uri="flowchartext", prefix="flowchart") package flowchartext; @gmf.diagram class Flowchart { val Node[*] nodes; val Transition[*] transitions; } @gmf.node(label="label") abstract class Node { attr String label; ref Transition[*]#source outgoing; ref Transition[*]#target incoming; }
  • 91. Model Driven Engineering Department of Computer Science Slide 91 Example: FlowchartExt (2/2) @gmf.link(label="label", source="source", target="target") class Transition { attr String label; ref Node#outgoing source; ref Node#incoming target; } class Subflow extends Flowchart, Node { } class Trigger extends Node { attr Date when; } class Action extends Node { } class Decision extends Node { } datatype Date : "java.util.Date";
  • 92. Model Driven Engineering Department of Computer Science Slide 92 Eugenia •Demonstrated only a small subset of the supported annotations •Complete list of annotations –http://eclipse.org/epsilon/doc/articles/eugenia- gmf-tutorial/
  • 93. Model Driven Engineering Department of Computer Science Slide 93 Generating a GMF Editor •That's everything! •You can now right-click your .emf metamodel and generate a fully-functional graphical editor •Once you've generated your editor, you'll need to run a new instance of Eclipse to use it –If you modify your metamodel, you will need to re-run Eugenia •Step-by-step instructions follow
  • 94. Model Driven Engineering Department of Computer Science Slide 94
  • 95. Model Driven Engineering Department of Computer Science Slide 95
  • 96. Model Driven Engineering Department of Computer Science Slide 96
  • 97. Model Driven Engineering Department of Computer Science Slide 97
  • 98. Model Driven Engineering Department of Computer Science Slide 98
  • 99. Model Driven Engineering Department of Computer Science Slide 99
  • 100. Model Driven Engineering Department of Computer Science Slide 100
  • 101. Model Driven Engineering Department of Computer Science Slide 101
  • 102. Model Driven Engineering Department of Computer Science Slide 102
  • 103. Model Driven Engineering Department of Computer Science Slide 103
  • 104. Model Driven Engineering Department of Computer Science Slide 104
  • 105. Model Driven Engineering Department of Computer Science Slide 105
  • 106. Model Driven Engineering Department of Computer Science Slide 106
  • 107. Model Driven Engineering Department of Computer Science Slide 107 Polishing the Editor •Eugenia annotations only control a subset of GMF's capabilities –For example, there's no annotation that controls the weight of the font of a label –Otherwise, Eugenia would be as complex as GMF •Still, it is often useful to fine-tune the appearance of the generated editor
  • 108. Model Driven Engineering Department of Computer Science Slide 108 Polishing Transformations •Eugenia provides support for fine-tuning the generated editor through polishing transformations –Optional in-place transformations that can be placed next to your .emf metamodel –Modify the GMF-specific models generated by Eugenia •2 transformations –Ecore2GMF.eol: Can modify the .gmfgraph, .gmfmap and .gmftool models –FigGmfGen.eol: Can modify the .gmfgen model
  • 109. Model Driven Engineering Department of Computer Science Slide 109 Ecore2GMF.eol // Add bold font to action labels var actionLabel = GmfGraph!Label.all. selectOne(l|l.name="ActionLabelFigure"); actionLabel.font = new GmfGraph!BasicFont; actionLabel.font.style = GmfGraph!FontStyle#BOLD;
  • 110. Model Driven Engineering Department of Computer Science Slide 110
  • 111. Model Driven Engineering Department of Computer Science Slide 111 Advanced Eugenia •Using images instead of shapes –http://eclipse.org/epsilon/doc/articles/eugenia-nodes-with- images/ •Nodes with images specified at runtime –http://eclipse.org/epsilon/doc/articles/eugenia-nodes-with- runtime-images/ •Phantom nodes –http://eclipse.org/epsilon/doc/articles/eugenia-phantom- nodes/ •Patching the generated code –http://eclipse.org/epsilon/doc/articles/eugenia-patching/ •Invoking Eugenia from ANT –http://eclipse.org/epsilon/doc/articles/eugenia-ant/
  • 112. Model Driven Engineering Department of Computer Science Slide 112 Other Graphical Modelling Frameworks •Sirius (builds on GMF's runtime) –www.eclipse.org/sirius •Graphiti –www.eclipse.org/graphiti
  • 113. Model Driven Engineering Department of Computer Science Slide 113 Lecture Summary •Explored the Eclipse Modelling Framework –Defining metamodels using Ecore –Creating models that conform to Ecore metamodels •Reflectively •Through a dedicated tree-based editor •Explored the Eclipse Graphical Modeling Framework (GMF) –Capabilities, organisation, limitations •Demonstrated the Eugenia tool that simplifies the development of GMF editors –Annotations, polishing transformations