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

Emfatic

Revision as of 13:48, 30 October 2007 by Mgarcia512.yahoo.com (Talk | contribs) (Summary)

Summary

Emfatic is a text editor supporting navigation, editing, and conversion of Ecore models, using a compact and human-readable syntax similar to Java. The EPLed Emfatic now hosted at EMFT extends the Feb 2005 alphaworks release with support for EMF Generics, folding, "red squigglies", an EMF Type Hierarchy, hyperlinks, AutoEdits, and the possibility to define templates to speed up document creation, among other usability features. The best way to gain hands-on experience with Emfatic is to right-click on any .ecore file and choose Generate Emfatic source, a similar converter works in the opposite direction. Online help is also available.

Emfatic itself builds upon Gymnast, a framework for jumpstarting text editors for custom Domain Specific Languages. Documentation on how to extend Emfatic, as well as on using Gymnast, can be found in this technical report.

Screenshots

Outline view

The Outline view displays the same elements as the Sample Ecore Editor, toolbar actions are available for hiding/showing annotations, attributes, references, operations.

   OutlineView.PNG

Mark Occurrences

Mark Occurrences highlights usages of the same EClassifier, range indication on the vertical bar spans the EClassifier declaration.

   EmfaticMarkOccurrences.PNG

Folding

Folding is supported, with an annotation hover for collapsed regions

EmfaticFolding01.PNG EmfaticFolding02.PNG

Problem and warning markers

Problem and warning markers (with squigglies) are updated after each keystroke. EmfaticProblemMarkers.PNG


Validation on conversion attempt

Attempting to generate an .emf for an .ecore triggers an EcoreValidation. Errors and warnings are shown in the Problems view, generation is still allowed if there are only warnings. EmfaticEcoreValidation.PNG


Outline selection follows cursor

The selected outline node follows the cursor position in the text.

Emfatictext2outline.PNG

Hyperlinks

Navigable hyperlinks (from usages of classifiers and from type variables to their declarations). Hyperlinks are very handy for example to follow an eOpposite to its declaration (alternatively, letting the mouse cursor rest over an eOpposite displays its definition in a text hover, see below) Open declaration is also supported, i.e. pressing F3 (or whatever key binding is in effect for it) moves the cursor to the declaration.

EmfaticHyperlinks.PNG

Wizard

A File > New > Other … wizard is available, which initializes the just created .emf file to a syntactically correct state:
@namespace(
   uri="http://a.b.c/x/y/Z",
   prefix="p")
package top;

EmfaticWizard.PNG

Hovers showing declaration for the element under the cursor

Hovers for usages of classifiers, type parameter variables, and eOpposite references: the definition is shown.

EmfaticHover.PNG


AutoEdits

SmartBrace: typing an opening brace automatically adds its closing brace and leaves the cursor indented on its own line (end result shown below). Besides that strategy the usual ones:

  • DefaultIndentLine
  • Closing quote for opening quote

EmfaticAutoEdit.PNG

Preference pages

Preference pages, to control AutoEdits and templates (see example below).

EmfaticPreferencePages.PNG


Time-saving Templates

A template for each kind of annotation saves typing. In the example, the template definition for adding OCL invariants is shown (the error marker is transient, once the template is inserted it disappears).

EmfaticTemplates.PNG


Show in EMF Type Hierarchy

Show in EMF Type Hierarchy can be activated from the editor and from the outline view.

EmfaticTypeHierarchy.PNG

The supertype and subtype relationships can be followed, with a list of (inherited) class members displayed on the lower pane. Double-clicking on any of these elements navigates in the editor to its declaration.

EmfaticTypeHierarchy02.PNG

Organization

Initial committers

Back to the top