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

EEF/User Guide

< EEF
Revision as of 00:26, 23 March 2010 by Stephane.bouchet.obeo.fr (Talk | contribs) (Editors available in the runtime)

Back to EEF

Introduction

The EEF workflow is the same than many others projects of the Eclipse Modeling Project :

  • Modeling : In the first step, you have to define some models (conforms to EEF metamodels) describing the graphical components that will be generated by EEF.
  • Generating : Once the EEF models defined, the second step in the EEF development is to call he EEF generating module. EEF bring an Acceleo module that generate the java classes for the components defined in the preceding step.
  • Customization : An optional third step can be done by customizing java code to add features that aren't directly accessible by the EEF generation. The third component of EEF is the runtime that is used by the generated code. This runtime is extensible, so you can substitute the generated code by your code and bring new features.

The custom can also be done by adding custom code in dedicated area in the generated code (called "user code area"). Acceleo will keep this code in the next generators invocation.

This document will describes all these steps in the user point of view.

EEF Modeling

Introduction

The EEF editing components are designed with three models conform to four metamodels. This models are :

  • The views model : This is one or more ViewsRepository that we be used to edit the EMF models. These views can be stored in several categories.
  • The components model : This a context PropertiesEditionContext that describes the controllers associating the elements of the views with the metamodel properties that they have to edit.
  • The eefgen generation settings model : it allows the user to define settings for the generation. Thus, the target directory, the legal notice, and many other option can be set up in this model.

Warning : The EEF intializer create the two first models in only one file !

EEF models.png

Views model

Concepts

EEF - View modeling.png

The views modeling is made with a model conform to the EEF views metamodel. The root element of this model is a ViewsRepository. A ViewsRepository has a name and an optional documentation. A RepositoryKind property can be set but isn't used in the generation. This will be done in the next release.

A ViewsRepository contains Views and/or Categories. A Category doesn't step in the generation, it's just an element used to organize the Views. A Category only have a name and a documentation.

It's possible to create Views in a ViewsRepository of in a Category. A View represents a list of editors, called in EEF ElementEditor, which will be generated in the final editing component. A View shouldn't necessarily be defined for a particular element of the mapped meta-model and you don't have to create one ElementEditor for all the structural features of a given type. We'll see in next section that views can be referenced in several contexts. A View have a name, a documentation and can be defined as Explicit or not. A View is explicit when it is directly used by a component, not when it is referenced or compounded (see advanced topics).

The atomic part of a view is an ElementEditor. It's one or more widgets allowing to set the value of a EMF object property. Mostly, an ElementEditor is a label (for the name of the property) with a widget to enter the value and if the property has documentation a question mark displaying this documentation.

EEF - ElementEditor example.png

An editor have a name, a documentation and mainly a representation. This representation is a Widget of a Toolkit. This representation defines during the generation the widget to generated in the parts. The available widgets are listed in next sections.

The last concept for the view modeling is the Container. A Container group together widgets in order to generate graphical delimitation around these widgets or to change the default layout use by EEF. A container have a name, a documentation and a representation defining the behaviour of the container.

Editors available in the runtime

The table below describes editors available in EEF runtime and the kind of EObject properties they can manage.

EEF runtime editors
Widgets Single EAttribute Multiple EAttribute EReference Containment
EString EInt/EDouble EBool EEnum Single Multiple Simple Multiple
Text
Textarea
Checkbox
Combo
Radio
EMFEnumViewer
MultiValuedEditor
EObjectFlatComboViewer
Advanced-EObjectFlatComboViewer
ReferenceTable
Advanced-ReferenceTable
TableComposition
AdvancedTableComposition
FlatReferenceTable
ImageViewer

Legend :

Green ticks indicate stable editors

Orange ticks indicate editors still under development.


This table shows editors able to manage several kind of properties. The EEF generation module will produce controller associating the given editor with the target properties.

For the Containers, there is two stable representation available :

  • Group : a subset of editors in the view
  • HBox: all editors in the given container will be placed next to each other

Advanced topics

Until now we have seen concepts to define static views composed of containers and editors. EEF have also mechanisms to make references between views and to compose dynamically views.

View references

In addition to containers and editors, it is possible to create ViewReferences. This item is used, as its name suggests, to reference another view of model. This element will cause during generation the inclusion of views referenced in the main one.

EEF - ViewReference generation.png






EEF - ViewReference model.png

Here's a sample of EEF model using ViewReference and the view resulting of the generation of this model.






View composition

A View (or a Container) can be composed of one of several sub-views. Sub-view definition is made as a top level View. The view composition interest is that the sub-views instantiation will be managed be the EEF component managing the view.

During a view containing sub-views instantiation, EEF runtime will ask for the component to know if sub-views must be created or not. We will see how to define this behavior for the components.

EEF - View composition.png

Components model

Concepts

Back to the top