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 "VIATRA2/Case Studies"

(VIATRA2 Examples)
(Simple Examples)
Line 3: Line 3:
 
* [[VIATRA2/Native importer creation |Importing a simple XML file (Car workflow)]]
 
* [[VIATRA2/Native importer creation |Importing a simple XML file (Car workflow)]]
 
This example explains how to create a VIATRA2 native importer for a simple XML-based modeling language. The importer is used to read your files, and produce VIATRA2 models in the model space so that you can create transformations for your language.
 
This example explains how to create a VIATRA2 native importer for a simple XML-based modeling language. The importer is used to read your files, and produce VIATRA2 models in the model space so that you can create transformations for your language.
 +
 +
* Simple file import and regexp parsing
 +
TODO by dtoth
 +
This example demonstrates how to process and build models from simple textual input files using regular expressions directly from VTCL code (without creating importer plugins).
 +
 +
* Basic ViatraDSM editors
 +
TODO by dtoth
 +
This example shows how to build metamodels for domain specific editing using the ViatraDSM component.
 +
 +
= Detailed examples
 +
 +
* HTML code generation
 +
TODO by dtoth (Bálint's stuff)
 +
A complete example covering model building, manipulating and code generation workflow applicable to XML-like languages.

Revision as of 12:06, 10 June 2008

Simple Examples

This example explains how to create a VIATRA2 native importer for a simple XML-based modeling language. The importer is used to read your files, and produce VIATRA2 models in the model space so that you can create transformations for your language.

  • Simple file import and regexp parsing

TODO by dtoth This example demonstrates how to process and build models from simple textual input files using regular expressions directly from VTCL code (without creating importer plugins).

  • Basic ViatraDSM editors

TODO by dtoth This example shows how to build metamodels for domain specific editing using the ViatraDSM component.

= Detailed examples

  • HTML code generation

TODO by dtoth (Bálint's stuff) A complete example covering model building, manipulating and code generation workflow applicable to XML-like languages.

Back to the top