Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorptessier2012-03-20 09:36:55 +0000
committerptessier2012-03-20 09:36:55 +0000
commita1a209068ac085895fc552129e0de015bfb8deeb (patch)
treec1470ea633d802482de4da47c066aa5492938659 /plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/generator
parente543da634be6fffe1947a864b20d8408d0ea70bb (diff)
downloadorg.eclipse.papyrus-a1a209068ac085895fc552129e0de015bfb8deeb.tar.gz
org.eclipse.papyrus-a1a209068ac085895fc552129e0de015bfb8deeb.tar.xz
org.eclipse.papyrus-a1a209068ac085895fc552129e0de015bfb8deeb.zip
329865: [ALF editor] Papyrus shall provide a specific textual editor for ALF.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=329865
Diffstat (limited to 'plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/generator')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/generator/AlfGenerator.xtend15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/generator/AlfGenerator.xtend b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/generator/AlfGenerator.xtend
new file mode 100644
index 00000000000..349d5189df3
--- /dev/null
+++ b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/generator/AlfGenerator.xtend
@@ -0,0 +1,15 @@
+/*
+ * generated by Xtext
+ */
+package org.eclipse.papyrus.uml.alf.generator
+
+import org.eclipse.emf.ecore.resource.Resource
+import org.eclipse.xtext.generator.IGenerator
+import org.eclipse.xtext.generator.IFileSystemAccess
+
+class AlfGenerator implements IGenerator {
+
+ override void doGenerate(Resource resource, IFileSystemAccess fsa) {
+ //TODO implement me
+ }
+}

Back to the top