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

Difference between revisions of "TMF"

(Xtext)
Line 8: Line 8:
  
 
= [[Xtext]] =
 
= [[Xtext]] =
[[Xtext]] is a part of the openArchitectureWare framework, but is now developed under modeling.tmf.xtext. It still will be a part of future openArchitectureWare releases.
+
[[Xtext]] was previously part of the openArchitectureWare framework, but is now developed under Eclipse Modeling.  
With Xtext one can also write grammars for existing meta models. In addition it is possible to derive ecore models from grammars, since a grammar contains sufficient information about the structure of parsed models.
+
 
Xtext implements EMF's resource API (it is possible to use xtext based syntax transparently through the resource load and save functionality, hence you can use e.g. GMF editors for Xtext based DSLs). Xtext also generates a rich IDE for your language, which can be easily customized via dependency injection.
+
Xtext is a framework for development of programming languages and domain specific languages (DSLs). Just describe your very own DSL using Xtext's simple EBNF grammar language and the generator will create a parser, an AST-meta model (implemented in EMF) as well as a full-featured Eclipse text editor from that.
 +
 
 +
The Framework integrates with technology from Eclipse Modeling such as EMF, GMF, M2T and parts of EMFT. Development with Xtext is optimized for short turn-arounds, so that adding new features to an existing DSL is a matter of minutes. Still sophisticated programming languages can be implemented.
  
 
= Future Plans =
 
= Future Plans =
 
It is intended that at some point there will be only one framework instead of two.
 
It is intended that at some point there will be only one framework instead of two.
 
Requirements and thoughts can be discussed [[TMF/LongRunPlans|here]]
 
Requirements and thoughts can be discussed [[TMF/LongRunPlans|here]]

Revision as of 11:59, 1 March 2010

The Textual Modeling Framework (TMF) is an umbrella project under the Eclipse Modeling Project (EMP). It hosts two different framework for implementation of textual syntax for EMF models (aka Ecore models).

TCS

TCS (Textual Concrete Syntax) comes from GMT. With TCS one annotates concrete syntax information to existing ecore models. The editor is not generated but interpreted.

Xtext

Xtext was previously part of the openArchitectureWare framework, but is now developed under Eclipse Modeling.

Xtext is a framework for development of programming languages and domain specific languages (DSLs). Just describe your very own DSL using Xtext's simple EBNF grammar language and the generator will create a parser, an AST-meta model (implemented in EMF) as well as a full-featured Eclipse text editor from that.

The Framework integrates with technology from Eclipse Modeling such as EMF, GMF, M2T and parts of EMFT. Development with Xtext is optimized for short turn-arounds, so that adding new features to an existing DSL is a matter of minutes. Still sophisticated programming languages can be implemented.

Future Plans

It is intended that at some point there will be only one framework instead of two. Requirements and thoughts can be discussed here

Back to the top