From 5a4ca3662c4551ac0e3a4ff16f5fadd071b898be Mon Sep 17 00:00:00 2001 From: Guillotin Damien Date: Sun, 17 Oct 2021 11:41:28 +0200 Subject: [PATCH] ajout runtimeXtext --- runtime-EclipseXtext/.gitignore | 1 + .../fr.n7.simplepdl.exemples/.project | 17 +++++++++++++++++ .../fr.n7.simplepdl.exemples/test_xtext.pdl | 15 +++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 runtime-EclipseXtext/.gitignore create mode 100644 runtime-EclipseXtext/fr.n7.simplepdl.exemples/.project create mode 100644 runtime-EclipseXtext/fr.n7.simplepdl.exemples/test_xtext.pdl diff --git a/runtime-EclipseXtext/.gitignore b/runtime-EclipseXtext/.gitignore new file mode 100644 index 0000000..e10e727 --- /dev/null +++ b/runtime-EclipseXtext/.gitignore @@ -0,0 +1 @@ +/.metadata/ diff --git a/runtime-EclipseXtext/fr.n7.simplepdl.exemples/.project b/runtime-EclipseXtext/fr.n7.simplepdl.exemples/.project new file mode 100644 index 0000000..3ff6c7e --- /dev/null +++ b/runtime-EclipseXtext/fr.n7.simplepdl.exemples/.project @@ -0,0 +1,17 @@ + + + fr.n7.simplepdl.exemples + + + + + + org.eclipse.xtext.ui.shared.xtextBuilder + + + + + + org.eclipse.xtext.ui.shared.xtextNature + + diff --git a/runtime-EclipseXtext/fr.n7.simplepdl.exemples/test_xtext.pdl b/runtime-EclipseXtext/fr.n7.simplepdl.exemples/test_xtext.pdl new file mode 100644 index 0000000..d3bf7cc --- /dev/null +++ b/runtime-EclipseXtext/fr.n7.simplepdl.exemples/test_xtext.pdl @@ -0,0 +1,15 @@ +process Developpement { + res Crayon 10 + res Papier 20 + wd Conception + req Crayon 10 + req Papier 5 + wd RedactionTest + wd RedactionDoc + wd Programmation + ws f2s from Conception to Programmation + ws s2s from Conception to RedactionTest + ws s2s from Conception to RedactionDoc + ws f2f from Conception to RedactionDoc + ws f2f from Programmation to RedactionTest +} \ No newline at end of file