Browse Source

Transformations take a name for input and output elements

Yentl Van Tendeloo 8 years ago
parent
commit
885867ee91
1 changed files with 4 additions and 1 deletions
  1. 4 1
      core/core_formalism.mvc

+ 4 - 1
core/core_formalism.mvc

@@ -65,8 +65,11 @@ SimpleClassDiagrams CoreFormalism {
 
     Class ActionLanguage : Transformation {}
 
-    Association transformInput (Model, Transformation) {}
+    Association transformInput (Model, Transformation) {
+        name : String
+    }
     Association transformOutput (Transformation, Model) {
+        name : String
         target_lower_cardinality = 1
     }
 }