diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1ec30317b..041aa6bac 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@ The format is *loosely* based on [Keep a Changelog](https://keepachangelog.com/e
### Fixed
- *de.itemis.mps.editor.diagram.runtime*: Diagrams can now be used in an headless environment (e.g. for rendering documentation).
+- *de.slisson.mps.editor.multiline.runtime*: A bug was fixed where the multiline cell got a wrong background color set.
- *de.itemis.mps.editor.diagram.runtime*: The dependency to *de.q60.mps.collections.libs* was removed.
## May 2024
diff --git a/README.md b/README.md
index 90b84187a..71e0f5c9f 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,8 @@
# MPS Extensions
-
-![JetBrains MPS 2022.2.2](https://img.shields.io/badge/JetBrains%20MPS-2022.2.2-orange)
+
+![JetBrains MPS 2022.3.1](https://img.shields.io/badge/JetBrains%20MPS-2022.3.1-orange)
+[![official JetBrains project](http://jb.gg/badges/official-flat-square.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
The MPS extensions aim to ease language development within MPS. They are maintained by itemis, JetBrains, and the open source community, and its development is closely aligned with the development of MPS.
diff --git a/build.allScripts/build.xml b/build.allScripts/build.xml
index 15ab94bc1..e3395046b 100644
--- a/build.allScripts/build.xml
+++ b/build.allScripts/build.xml
@@ -157,6 +157,7 @@
+
diff --git a/build.gradle b/build.gradle
index 16a6cc9c8..35506cc64 100644
--- a/build.gradle
+++ b/build.gradle
@@ -16,7 +16,7 @@ import java.time.LocalDateTime
apply plugin: 'download-jbr'
downloadJbr {
- jbrVersion = '17.0.6-b469.82'
+ jbrVersion = '17.0.6-b653.34'
}
// detect if we are in a CI build
@@ -41,9 +41,9 @@ logger.info 'Repository username: {}', project.nexusUsername
// Dependency versions
// major version, e.g. '2021.1', '2021.2'
-ext.mpsMajor = '2022.2'
+ext.mpsMajor = '2022.3'
// optional minor/bugfix number (not added to the final build version)
-ext.mpsMinor = '3'
+ext.mpsMinor = '1'
// e.g. Beta, EAP, RC
ext.mpsReleaseType = ''
@@ -234,7 +234,7 @@ ext.extensions_home = '-Dextensions.home=' + rootDir
// ___________________ utilities ___________________
File scriptFile(String relativePath) {
- new File("$rootDir/build/generated/$relativePath")
+ new File("$rootDir/build/patched/$relativePath")
}
def defaultScriptArgs = [mps_home, build_dir, artifacts_dir, ext.buildDate, ext.pluginVersion]
@@ -277,22 +277,37 @@ task resolved_diagram_dependencies(type: Copy) {
}
}
-task build_allScripts(type: BuildLanguages, dependsOn: [
- 'downloadJbr',
- resolveMps,
- resolved_diagram_dependencies,
- copyModelApi,
-]) {
+def build_allScripts_unpatched = tasks.register('build_allScripts_unpatched', BuildLanguages) {
+ dependsOn 'downloadJbr', resolveMps, copyModelApi, resolved_diagram_dependencies
script "$rootDir/scripts/build.xml"
}
+// Patch JNA path in generated build scripts until https://github.com/JetBrains/MPS/pull/71 is fixed
+def patch_allScripts = tasks.register('patch_allScripts', Copy) {
+ dependsOn build_allScripts_unpatched
+ from 'build/generated'
+ into 'build/patched'
+
+ def isAarch64 = System.getProperty('os.arch') == 'aarch64'
+ def jnaArch = isAarch64 ? 'aarch64' : 'amd64'
+
+ filter {
+ it.replace('"-Djna.boot.library.path=${artifacts.mps}/lib/jna"',
+ '"-Djna.boot.library.path=${artifacts.mps}/lib/jna/' + jnaArch + '"')
+ }
+}
+
+task build_allScripts {
+ dependsOn patch_allScripts
+}
+
task copyChangelog(type: Copy) {
from "$rootDir/code/solutions/de.itemis.mps.extensions.changelog/source_gen/de/itemis/mps/extensions/changelog"
into "$rootDir"
include "*.md"
}
-task build_languages(type: BuildLanguages, dependsOn: [build_allScripts, copyChangelog]) {
+task build_languages(type: BuildLanguages, dependsOn: [build_allScripts]) {
script scriptFile('languages/build.xml')
}
diff --git a/code/.mps/migration.xml b/code/.mps/migration.xml
index 345bfc32f..1710be715 100644
--- a/code/.mps/migration.xml
+++ b/code/.mps/migration.xml
@@ -8,6 +8,8 @@
-
+
+
+
\ No newline at end of file
diff --git a/code/apache-commons/solutions/org.apache.commons/org.apache.commons.msd b/code/apache-commons/solutions/org.apache.commons/org.apache.commons.msd
index 2ba17feb8..292568925 100644
--- a/code/apache-commons/solutions/org.apache.commons/org.apache.commons.msd
+++ b/code/apache-commons/solutions/org.apache.commons/org.apache.commons.msd
@@ -12,7 +12,7 @@
-
+
diff --git a/code/blutil/languages/com.mbeddr.mpsutil.blutil.genutil/com.mbeddr.mpsutil.blutil.genutil.mpl b/code/blutil/languages/com.mbeddr.mpsutil.blutil.genutil/com.mbeddr.mpsutil.blutil.genutil.mpl
index e7534a281..089020ccb 100644
--- a/code/blutil/languages/com.mbeddr.mpsutil.blutil.genutil/com.mbeddr.mpsutil.blutil.genutil.mpl
+++ b/code/blutil/languages/com.mbeddr.mpsutil.blutil.genutil/com.mbeddr.mpsutil.blutil.genutil.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -56,7 +56,6 @@
-
diff --git a/code/blutil/languages/com.mbeddr.mpsutil.blutil/blutil.mpl b/code/blutil/languages/com.mbeddr.mpsutil.blutil/blutil.mpl
index ca15ce16f..9cc4bc07c 100644
--- a/code/blutil/languages/com.mbeddr.mpsutil.blutil/blutil.mpl
+++ b/code/blutil/languages/com.mbeddr.mpsutil.blutil/blutil.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -40,6 +40,7 @@
+
@@ -53,7 +54,6 @@
-
@@ -64,8 +64,6 @@
-
-
@@ -74,12 +72,9 @@
-
-
-
diff --git a/code/blutil/languages/com.mbeddr.mpsutil.blutil/solutions/com.mbeddr.mpsutil.blutil.rt.msd b/code/blutil/languages/com.mbeddr.mpsutil.blutil/solutions/com.mbeddr.mpsutil.blutil.rt.msd
index 23aaeb456..df793d9ae 100644
--- a/code/blutil/languages/com.mbeddr.mpsutil.blutil/solutions/com.mbeddr.mpsutil.blutil.rt.msd
+++ b/code/blutil/languages/com.mbeddr.mpsutil.blutil/solutions/com.mbeddr.mpsutil.blutil.rt.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/blutil/solutions/com.mbeddr.mpsutil.blutil.genutil.rt/com.mbeddr.mpsutil.blutil.genutil.rt.msd b/code/blutil/solutions/com.mbeddr.mpsutil.blutil.genutil.rt/com.mbeddr.mpsutil.blutil.genutil.rt.msd
index 297f9c4e9..9a7d289d1 100644
--- a/code/blutil/solutions/com.mbeddr.mpsutil.blutil.genutil.rt/com.mbeddr.mpsutil.blutil.genutil.rt.msd
+++ b/code/blutil/solutions/com.mbeddr.mpsutil.blutil.genutil.rt/com.mbeddr.mpsutil.blutil.genutil.rt.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.doc/test.com.mbeddr.mpsutil.blutil.doc.msd b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.doc/test.com.mbeddr.mpsutil.blutil.doc.msd
index 89acb4a40..b63684c97 100644
--- a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.doc/test.com.mbeddr.mpsutil.blutil.doc.msd
+++ b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.doc/test.com.mbeddr.mpsutil.blutil.doc.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil.lang/test.com.mbeddr.mpsutil.blutil.genutil.lang.mpl b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil.lang/test.com.mbeddr.mpsutil.blutil.genutil.lang.mpl
index bc6dc535e..45b1a20c8 100644
--- a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil.lang/test.com.mbeddr.mpsutil.blutil.genutil.lang.mpl
+++ b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil.lang/test.com.mbeddr.mpsutil.blutil.genutil.lang.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -52,7 +52,6 @@
-
diff --git a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil/test.com.mbeddr.mpsutil.blutil.genutil.msd b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil/test.com.mbeddr.mpsutil.blutil.genutil.msd
index 394bef17a..23ac98aa5 100644
--- a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil/test.com.mbeddr.mpsutil.blutil.genutil.msd
+++ b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil.genutil/test.com.mbeddr.mpsutil.blutil.genutil.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil/test.com.mbeddr.mpsutil.blutil.msd b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil/test.com.mbeddr.mpsutil.blutil.msd
index 734e8bb18..cb6beae50 100644
--- a/code/blutil/tests/test.com.mbeddr.mpsutil.blutil/test.com.mbeddr.mpsutil.blutil.msd
+++ b/code/blutil/tests/test.com.mbeddr.mpsutil.blutil/test.com.mbeddr.mpsutil.blutil.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/blutil/tests/test.ts.conceptswitch/test.ts.conceptswitch.msd b/code/blutil/tests/test.ts.conceptswitch/test.ts.conceptswitch.msd
index 2150576c1..ece202db8 100644
--- a/code/blutil/tests/test.ts.conceptswitch/test.ts.conceptswitch.msd
+++ b/code/blutil/tests/test.ts.conceptswitch/test.ts.conceptswitch.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/blutil/tests/test.ts.match/match.msd b/code/blutil/tests/test.ts.match/match.msd
index fa336b49f..c3648cb67 100644
--- a/code/blutil/tests/test.ts.match/match.msd
+++ b/code/blutil/tests/test.ts.match/match.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/build/solutions/allScripts/allScripts.msd b/code/build/solutions/allScripts/allScripts.msd
index 8f8c68dfc..9d2426793 100644
--- a/code/build/solutions/allScripts/allScripts.msd
+++ b/code/build/solutions/allScripts/allScripts.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/build/solutions/de.itemis.mps.extensions.build/de.itemis.mps.extensions.build.msd b/code/build/solutions/de.itemis.mps.extensions.build/de.itemis.mps.extensions.build.msd
index 215edae8c..35437cb7d 100644
--- a/code/build/solutions/de.itemis.mps.extensions.build/de.itemis.mps.extensions.build.msd
+++ b/code/build/solutions/de.itemis.mps.extensions.build/de.itemis.mps.extensions.build.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/build/solutions/de.itemis.mps.extensions.build/models/de.itemis.mps.extensions.build.mps b/code/build/solutions/de.itemis.mps.extensions.build/models/de.itemis.mps.extensions.build.mps
index 389738197..5068cb314 100644
--- a/code/build/solutions/de.itemis.mps.extensions.build/models/de.itemis.mps.extensions.build.mps
+++ b/code/build/solutions/de.itemis.mps.extensions.build/models/de.itemis.mps.extensions.build.mps
@@ -14260,6 +14260,11 @@
+
+
+
+
+
diff --git a/code/celllayout/languages/de.itemis.mps.celllayout/de.itemis.mps.editor.celllayout.styles.mpl b/code/celllayout/languages/de.itemis.mps.celllayout/de.itemis.mps.editor.celllayout.styles.mpl
index 1b163b167..d01d2b177 100644
--- a/code/celllayout/languages/de.itemis.mps.celllayout/de.itemis.mps.editor.celllayout.styles.mpl
+++ b/code/celllayout/languages/de.itemis.mps.celllayout/de.itemis.mps.editor.celllayout.styles.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/celllayout/languages/de.itemis.mps.editor.celllayout.sandboxlang/de.itemis.mps.editor.celllayout.sandboxlang.mpl b/code/celllayout/languages/de.itemis.mps.editor.celllayout.sandboxlang/de.itemis.mps.editor.celllayout.sandboxlang.mpl
index 03e350fe7..ca3cb30dd 100644
--- a/code/celllayout/languages/de.itemis.mps.editor.celllayout.sandboxlang/de.itemis.mps.editor.celllayout.sandboxlang.mpl
+++ b/code/celllayout/languages/de.itemis.mps.editor.celllayout.sandboxlang/de.itemis.mps.editor.celllayout.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/celllayout/languages/de.itemis.mps.editor.celllayout/de.itemis.mps.editor.celllayout.mpl b/code/celllayout/languages/de.itemis.mps.editor.celllayout/de.itemis.mps.editor.celllayout.mpl
index c5abc744b..538d2c2fc 100644
--- a/code/celllayout/languages/de.itemis.mps.editor.celllayout/de.itemis.mps.editor.celllayout.mpl
+++ b/code/celllayout/languages/de.itemis.mps.editor.celllayout/de.itemis.mps.editor.celllayout.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -62,8 +62,6 @@
-
-
@@ -73,11 +71,9 @@
-
-
@@ -87,7 +83,6 @@
-
diff --git a/code/celllayout/languages/test.de.itemis.mps.editor.celllayout.lang/test.de.itemis.mps.editor.celllayout.lang.mpl b/code/celllayout/languages/test.de.itemis.mps.editor.celllayout.lang/test.de.itemis.mps.editor.celllayout.lang.mpl
index 2e15d9b4d..b2c18fa3c 100644
--- a/code/celllayout/languages/test.de.itemis.mps.editor.celllayout.lang/test.de.itemis.mps.editor.celllayout.lang.mpl
+++ b/code/celllayout/languages/test.de.itemis.mps.editor.celllayout.lang/test.de.itemis.mps.editor.celllayout.lang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/celllayout/solutions/de.itemis.mps.editor.celllayout.sandbox/de.itemis.mps.editor.celllayout.sandbox.msd b/code/celllayout/solutions/de.itemis.mps.editor.celllayout.sandbox/de.itemis.mps.editor.celllayout.sandbox.msd
index 1a8df2899..6791a3a10 100644
--- a/code/celllayout/solutions/de.itemis.mps.editor.celllayout.sandbox/de.itemis.mps.editor.celllayout.sandbox.msd
+++ b/code/celllayout/solutions/de.itemis.mps.editor.celllayout.sandbox/de.itemis.mps.editor.celllayout.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/celllayout/solutions/de.slisson.mps.editor.celllayout.runtime/de.itemis.mps.editor.celllayout.runtime.msd b/code/celllayout/solutions/de.slisson.mps.editor.celllayout.runtime/de.itemis.mps.editor.celllayout.runtime.msd
index e5dcf2496..b47b18d2f 100644
--- a/code/celllayout/solutions/de.slisson.mps.editor.celllayout.runtime/de.itemis.mps.editor.celllayout.runtime.msd
+++ b/code/celllayout/solutions/de.slisson.mps.editor.celllayout.runtime/de.itemis.mps.editor.celllayout.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/celllayout/solutions/test.de.itemis.mps.editor.celllayout.runtime/test.de.itemis.mps.editor.celllayout.msd b/code/celllayout/solutions/test.de.itemis.mps.editor.celllayout.runtime/test.de.itemis.mps.editor.celllayout.msd
index 5958b4cb3..6bafc37d3 100644
--- a/code/celllayout/solutions/test.de.itemis.mps.editor.celllayout.runtime/test.de.itemis.mps.editor.celllayout.msd
+++ b/code/celllayout/solutions/test.de.itemis.mps.editor.celllayout.runtime/test.de.itemis.mps.editor.celllayout.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.demolang/de.slisson.mps.conditionalEditor.demolang.mpl b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.demolang/de.slisson.mps.conditionalEditor.demolang.mpl
index 62f8b8a5b..87b109f56 100644
--- a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.demolang/de.slisson.mps.conditionalEditor.demolang.mpl
+++ b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.demolang/de.slisson.mps.conditionalEditor.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.hints/de.slisson.mps.conditionalEditor.hints.mpl b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.hints/de.slisson.mps.conditionalEditor.hints.mpl
index 04ee6f5c7..cd64b5f44 100644
--- a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.hints/de.slisson.mps.conditionalEditor.hints.mpl
+++ b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor.hints/de.slisson.mps.conditionalEditor.hints.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/de.slisson.mps.conditionalEditor.mpl b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/de.slisson.mps.conditionalEditor.mpl
index 46f6e754f..9f89a2098 100644
--- a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/de.slisson.mps.conditionalEditor.mpl
+++ b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/de.slisson.mps.conditionalEditor.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -67,8 +67,6 @@
-
-
@@ -78,12 +76,10 @@
-
-
@@ -94,7 +90,6 @@
-
diff --git a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/generator/template/main@generator.mps b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/generator/template/main@generator.mps
index 214eb1e71..f06c6cb16 100644
--- a/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/generator/template/main@generator.mps
+++ b/code/conditional-editor/languages/de.slisson.mps.conditionalEditor/generator/template/main@generator.mps
@@ -24,10 +24,7 @@
-
-
-
diff --git a/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.runtime/de.slisson.mps.conditionalEditor.runtime.msd b/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.runtime/de.slisson.mps.conditionalEditor.runtime.msd
index d47aa64d2..524991710 100644
--- a/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.runtime/de.slisson.mps.conditionalEditor.runtime.msd
+++ b/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.runtime/de.slisson.mps.conditionalEditor.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.sandbox/de.slisson.mps.conditionalEditor.sandbox.msd b/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.sandbox/de.slisson.mps.conditionalEditor.sandbox.msd
index e41ea7a17..e7bd55716 100644
--- a/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.sandbox/de.slisson.mps.conditionalEditor.sandbox.msd
+++ b/code/conditional-editor/solutions/de.slisson.mps.conditionalEditor.sandbox/de.slisson.mps.conditionalEditor.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/debug/languages/de.itemis.mps.debug/de.itemis.mps.debug.mpl b/code/debug/languages/de.itemis.mps.debug/de.itemis.mps.debug.mpl
index 6fbec5040..634786e4f 100644
--- a/code/debug/languages/de.itemis.mps.debug/de.itemis.mps.debug.mpl
+++ b/code/debug/languages/de.itemis.mps.debug/de.itemis.mps.debug.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -57,8 +57,6 @@
-
-
@@ -66,16 +64,10 @@
-
-
-
-
-
-
diff --git a/code/debug/solutions/de.itemis.mps.debug.runtime/de.itemis.mps.debug.runtime.msd b/code/debug/solutions/de.itemis.mps.debug.runtime/de.itemis.mps.debug.runtime.msd
index 355860d46..08967afd6 100644
--- a/code/debug/solutions/de.itemis.mps.debug.runtime/de.itemis.mps.debug.runtime.msd
+++ b/code/debug/solutions/de.itemis.mps.debug.runtime/de.itemis.mps.debug.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/languages/de.itemis.mps.editor.diagram.demo.activity/de.itemis.mps.editor.diagram.demo.activity.mpl b/code/diagram/languages/de.itemis.mps.editor.diagram.demo.activity/de.itemis.mps.editor.diagram.demo.activity.mpl
index 47baa4cc1..d21128ce9 100644
--- a/code/diagram/languages/de.itemis.mps.editor.diagram.demo.activity/de.itemis.mps.editor.diagram.demo.activity.mpl
+++ b/code/diagram/languages/de.itemis.mps.editor.diagram.demo.activity/de.itemis.mps.editor.diagram.demo.activity.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/languages/de.itemis.mps.editor.diagram.demo.callgraph/de.itemis.mps.editor.diagram.demo.callgraph.mpl b/code/diagram/languages/de.itemis.mps.editor.diagram.demo.callgraph/de.itemis.mps.editor.diagram.demo.callgraph.mpl
index d2418b21f..eb6f775be 100644
--- a/code/diagram/languages/de.itemis.mps.editor.diagram.demo.callgraph/de.itemis.mps.editor.diagram.demo.callgraph.mpl
+++ b/code/diagram/languages/de.itemis.mps.editor.diagram.demo.callgraph/de.itemis.mps.editor.diagram.demo.callgraph.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/languages/de.itemis.mps.editor.diagram.demoentities/de.itemis.mps.editor.diagram.demoentities.mpl b/code/diagram/languages/de.itemis.mps.editor.diagram.demoentities/de.itemis.mps.editor.diagram.demoentities.mpl
index 8dfc9a08f..0e55f8886 100644
--- a/code/diagram/languages/de.itemis.mps.editor.diagram.demoentities/de.itemis.mps.editor.diagram.demoentities.mpl
+++ b/code/diagram/languages/de.itemis.mps.editor.diagram.demoentities/de.itemis.mps.editor.diagram.demoentities.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/languages/de.itemis.mps.editor.diagram.demolang/de.itemis.mps.editor.diagram.demolang.mpl b/code/diagram/languages/de.itemis.mps.editor.diagram.demolang/de.itemis.mps.editor.diagram.demolang.mpl
index a4242a025..94a37973b 100644
--- a/code/diagram/languages/de.itemis.mps.editor.diagram.demolang/de.itemis.mps.editor.diagram.demolang.mpl
+++ b/code/diagram/languages/de.itemis.mps.editor.diagram.demolang/de.itemis.mps.editor.diagram.demolang.mpl
@@ -7,7 +7,7 @@
-
+
@@ -20,7 +20,7 @@
-
+
diff --git a/code/diagram/languages/de.itemis.mps.editor.diagram.layout/de.itemis.mps.editor.diagram.layout.mpl b/code/diagram/languages/de.itemis.mps.editor.diagram.layout/de.itemis.mps.editor.diagram.layout.mpl
index 280716a68..a58691e56 100644
--- a/code/diagram/languages/de.itemis.mps.editor.diagram.layout/de.itemis.mps.editor.diagram.layout.mpl
+++ b/code/diagram/languages/de.itemis.mps.editor.diagram.layout/de.itemis.mps.editor.diagram.layout.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/languages/de.itemis.mps.editor.diagram.styles/de.itemis.mps.editor.diagram.styles.mpl b/code/diagram/languages/de.itemis.mps.editor.diagram.styles/de.itemis.mps.editor.diagram.styles.mpl
index ad11e607a..bbf1d02da 100644
--- a/code/diagram/languages/de.itemis.mps.editor.diagram.styles/de.itemis.mps.editor.diagram.styles.mpl
+++ b/code/diagram/languages/de.itemis.mps.editor.diagram.styles/de.itemis.mps.editor.diagram.styles.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/languages/de.itemis.mps.editor.diagram/de.itemis.mps.editor.diagram.mpl b/code/diagram/languages/de.itemis.mps.editor.diagram/de.itemis.mps.editor.diagram.mpl
index 5fec73662..ff5e00169 100644
--- a/code/diagram/languages/de.itemis.mps.editor.diagram/de.itemis.mps.editor.diagram.mpl
+++ b/code/diagram/languages/de.itemis.mps.editor.diagram/de.itemis.mps.editor.diagram.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -70,8 +70,6 @@
-
-
@@ -87,13 +85,11 @@
-
-
@@ -104,7 +100,6 @@
-
diff --git a/code/diagram/languages/test.de.itemis.mps.editor.diagram.lang/test.de.itemis.mps.editor.diagram.lang.mpl b/code/diagram/languages/test.de.itemis.mps.editor.diagram.lang/test.de.itemis.mps.editor.diagram.lang.mpl
index 70f48acb1..656bf0d7a 100644
--- a/code/diagram/languages/test.de.itemis.mps.editor.diagram.lang/test.de.itemis.mps.editor.diagram.lang.mpl
+++ b/code/diagram/languages/test.de.itemis.mps.editor.diagram.lang/test.de.itemis.mps.editor.diagram.lang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/solutions/de.itemis.mps.editor.diagram.demo.activity.sandbox/de.itemis.mps.editor.diagram.demo.activity.sandbox.msd b/code/diagram/solutions/de.itemis.mps.editor.diagram.demo.activity.sandbox/de.itemis.mps.editor.diagram.demo.activity.sandbox.msd
index 86e8ea375..5263a0d60 100644
--- a/code/diagram/solutions/de.itemis.mps.editor.diagram.demo.activity.sandbox/de.itemis.mps.editor.diagram.demo.activity.sandbox.msd
+++ b/code/diagram/solutions/de.itemis.mps.editor.diagram.demo.activity.sandbox/de.itemis.mps.editor.diagram.demo.activity.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/solutions/de.itemis.mps.editor.diagram.demoentities.sandbox/de.itemis.mps.editor.diagram.demoentities.sandbox.msd b/code/diagram/solutions/de.itemis.mps.editor.diagram.demoentities.sandbox/de.itemis.mps.editor.diagram.demoentities.sandbox.msd
index 579b8c0d3..295046dff 100644
--- a/code/diagram/solutions/de.itemis.mps.editor.diagram.demoentities.sandbox/de.itemis.mps.editor.diagram.demoentities.sandbox.msd
+++ b/code/diagram/solutions/de.itemis.mps.editor.diagram.demoentities.sandbox/de.itemis.mps.editor.diagram.demoentities.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/solutions/de.itemis.mps.editor.diagram.runtime/de.itemis.mps.editor.diagram.runtime.msd b/code/diagram/solutions/de.itemis.mps.editor.diagram.runtime/de.itemis.mps.editor.diagram.runtime.msd
index 714078a24..ec6a18a48 100644
--- a/code/diagram/solutions/de.itemis.mps.editor.diagram.runtime/de.itemis.mps.editor.diagram.runtime.msd
+++ b/code/diagram/solutions/de.itemis.mps.editor.diagram.runtime/de.itemis.mps.editor.diagram.runtime.msd
@@ -23,7 +23,7 @@
-
+
diff --git a/code/diagram/solutions/de.itemis.mps.editor.diagram.sandbox/de.itemis.mps.editor.diagram.sandbox.msd b/code/diagram/solutions/de.itemis.mps.editor.diagram.sandbox/de.itemis.mps.editor.diagram.sandbox.msd
index b9be5ac43..51f458514 100644
--- a/code/diagram/solutions/de.itemis.mps.editor.diagram.sandbox/de.itemis.mps.editor.diagram.sandbox.msd
+++ b/code/diagram/solutions/de.itemis.mps.editor.diagram.sandbox/de.itemis.mps.editor.diagram.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/solutions/de.itemis.mps.editor.diagram.shapes/de.itemis.mps.editor.diagram.shapes.msd b/code/diagram/solutions/de.itemis.mps.editor.diagram.shapes/de.itemis.mps.editor.diagram.shapes.msd
index ba0657c33..ef7536473 100644
--- a/code/diagram/solutions/de.itemis.mps.editor.diagram.shapes/de.itemis.mps.editor.diagram.shapes.msd
+++ b/code/diagram/solutions/de.itemis.mps.editor.diagram.shapes/de.itemis.mps.editor.diagram.shapes.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/diagram/solutions/test.de.itemis.mps.editor.diagram.solution/test.de.itemis.mps.editor.diagram.solution.msd b/code/diagram/solutions/test.de.itemis.mps.editor.diagram.solution/test.de.itemis.mps.editor.diagram.solution.msd
index 1d8fcd0ce..29025089d 100644
--- a/code/diagram/solutions/test.de.itemis.mps.editor.diagram.solution/test.de.itemis.mps.editor.diagram.solution.msd
+++ b/code/diagram/solutions/test.de.itemis.mps.editor.diagram.solution/test.de.itemis.mps.editor.diagram.solution.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.runtimelang/com.mbeddr.mpsutil.grammarcells.runtimelang.mpl b/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.runtimelang/com.mbeddr.mpsutil.grammarcells.runtimelang.mpl
index 2fa1fa465..511b69943 100644
--- a/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.runtimelang/com.mbeddr.mpsutil.grammarcells.runtimelang.mpl
+++ b/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.runtimelang/com.mbeddr.mpsutil.grammarcells.runtimelang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.sandboxlang/com.mbeddr.mpsutil.grammarcells.sandboxlang.mpl b/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.sandboxlang/com.mbeddr.mpsutil.grammarcells.sandboxlang.mpl
index 0c2ffbe68..e2eed9175 100644
--- a/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.sandboxlang/com.mbeddr.mpsutil.grammarcells.sandboxlang.mpl
+++ b/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells.sandboxlang/com.mbeddr.mpsutil.grammarcells.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells/com.mbeddr.mpsutil.grammarcells.mpl b/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells/com.mbeddr.mpsutil.grammarcells.mpl
index a51c67565..a619e9aa1 100644
--- a/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells/com.mbeddr.mpsutil.grammarcells.mpl
+++ b/code/grammarcells/languages/com.mbeddr.mpsutil.grammarcells/com.mbeddr.mpsutil.grammarcells.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -76,8 +76,6 @@
-
-
@@ -88,15 +86,12 @@
-
-
-
@@ -109,7 +104,6 @@
-
diff --git a/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.runtime/com.mbeddr.mpsutil.grammarcells.runtime.msd b/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.runtime/com.mbeddr.mpsutil.grammarcells.runtime.msd
index e70f200ca..639c2b0fb 100644
--- a/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.runtime/com.mbeddr.mpsutil.grammarcells.runtime.msd
+++ b/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.runtime/com.mbeddr.mpsutil.grammarcells.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.sandbox/com.mbeddr.mpsutil.grammarcells.sandbox.msd b/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.sandbox/com.mbeddr.mpsutil.grammarcells.sandbox.msd
index a86aa5587..2bc95a0bb 100644
--- a/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.sandbox/com.mbeddr.mpsutil.grammarcells.sandbox.msd
+++ b/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.sandbox/com.mbeddr.mpsutil.grammarcells.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.tests/com.mbeddr.mpsutil.grammarcells.tests.msd b/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.tests/com.mbeddr.mpsutil.grammarcells.tests.msd
index b55913aab..965c712be 100644
--- a/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.tests/com.mbeddr.mpsutil.grammarcells.tests.msd
+++ b/code/grammarcells/solutions/com.mbeddr.mpsutil.grammarcells.tests/com.mbeddr.mpsutil.grammarcells.tests.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/hacks/languages/de.itemis.mps.hacks.xmodelgen/de.itemis.mps.hacks.xmodelgen.mpl b/code/hacks/languages/de.itemis.mps.hacks.xmodelgen/de.itemis.mps.hacks.xmodelgen.mpl
index 49a8ecacd..b7ab35e1b 100644
--- a/code/hacks/languages/de.itemis.mps.hacks.xmodelgen/de.itemis.mps.hacks.xmodelgen.mpl
+++ b/code/hacks/languages/de.itemis.mps.hacks.xmodelgen/de.itemis.mps.hacks.xmodelgen.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/hacks/languages/de.itemis.mps.nativelibs/de.itemis.mps.nativelibs.mpl b/code/hacks/languages/de.itemis.mps.nativelibs/de.itemis.mps.nativelibs.mpl
index 53aa36527..77948b3b5 100644
--- a/code/hacks/languages/de.itemis.mps.nativelibs/de.itemis.mps.nativelibs.mpl
+++ b/code/hacks/languages/de.itemis.mps.nativelibs/de.itemis.mps.nativelibs.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/code/hacks/languages/de.slisson.mps.reflection/de.slisson.mps.reflection.mpl b/code/hacks/languages/de.slisson.mps.reflection/de.slisson.mps.reflection.mpl
index 660af1c02..3e5538cd8 100644
--- a/code/hacks/languages/de.slisson.mps.reflection/de.slisson.mps.reflection.mpl
+++ b/code/hacks/languages/de.slisson.mps.reflection/de.slisson.mps.reflection.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -32,6 +32,7 @@
+
@@ -42,7 +43,6 @@
-
@@ -57,7 +57,6 @@
-
diff --git a/code/hacks/solutions/de.itemis.mps.nativelibs.loader/de.itemis.mps.nativelibs.loader.msd b/code/hacks/solutions/de.itemis.mps.nativelibs.loader/de.itemis.mps.nativelibs.loader.msd
index 6f03d6ae6..460d788f5 100644
--- a/code/hacks/solutions/de.itemis.mps.nativelibs.loader/de.itemis.mps.nativelibs.loader.msd
+++ b/code/hacks/solutions/de.itemis.mps.nativelibs.loader/de.itemis.mps.nativelibs.loader.msd
@@ -6,8 +6,7 @@
-
-
+
diff --git a/code/hacks/solutions/de.slisson.mps.hacks.editor/de.slisson.mps.hacks.editor.msd b/code/hacks/solutions/de.slisson.mps.hacks.editor/de.slisson.mps.hacks.editor.msd
index 0e671c71b..c4715ffb3 100644
--- a/code/hacks/solutions/de.slisson.mps.hacks.editor/de.slisson.mps.hacks.editor.msd
+++ b/code/hacks/solutions/de.slisson.mps.hacks.editor/de.slisson.mps.hacks.editor.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/hacks/solutions/de.slisson.mps.reflection.runtime/de.slisson.mps.reflection.runtime.msd b/code/hacks/solutions/de.slisson.mps.reflection.runtime/de.slisson.mps.reflection.runtime.msd
index 6ce0a94bd..dbb595834 100644
--- a/code/hacks/solutions/de.slisson.mps.reflection.runtime/de.slisson.mps.reflection.runtime.msd
+++ b/code/hacks/solutions/de.slisson.mps.reflection.runtime/de.slisson.mps.reflection.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/htmlcell/languages/de.itemis.mps.editor.htmlcell.demolang/de.itemis.mps.editor.htmlcell.demolang.mpl b/code/htmlcell/languages/de.itemis.mps.editor.htmlcell.demolang/de.itemis.mps.editor.htmlcell.demolang.mpl
index 652d63a58..a5b75297f 100644
--- a/code/htmlcell/languages/de.itemis.mps.editor.htmlcell.demolang/de.itemis.mps.editor.htmlcell.demolang.mpl
+++ b/code/htmlcell/languages/de.itemis.mps.editor.htmlcell.demolang/de.itemis.mps.editor.htmlcell.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/de.itemis.mps.editor.htmlcell.mpl b/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/de.itemis.mps.editor.htmlcell.mpl
index 05039bb84..694c58c38 100644
--- a/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/de.itemis.mps.editor.htmlcell.mpl
+++ b/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/de.itemis.mps.editor.htmlcell.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -58,8 +58,6 @@
-
-
@@ -70,12 +68,10 @@
-
-
@@ -85,7 +81,6 @@
-
diff --git a/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/sandbox/de.itemis.mps.editor.htmlcell.sandbox.msd b/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/sandbox/de.itemis.mps.editor.htmlcell.sandbox.msd
index 419ed6825..07e3e8da4 100644
--- a/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/sandbox/de.itemis.mps.editor.htmlcell.sandbox.msd
+++ b/code/htmlcell/languages/de.itemis.mps.editor.htmlcell/sandbox/de.itemis.mps.editor.htmlcell.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/htmlcell/solutions/de.itemis.mps.editor.htmlcell.runtime/de.itemis.mps.editor.htmlcell.runtime.msd b/code/htmlcell/solutions/de.itemis.mps.editor.htmlcell.runtime/de.itemis.mps.editor.htmlcell.runtime.msd
index 92dab2e86..5b22e8be7 100644
--- a/code/htmlcell/solutions/de.itemis.mps.editor.htmlcell.runtime/de.itemis.mps.editor.htmlcell.runtime.msd
+++ b/code/htmlcell/solutions/de.itemis.mps.editor.htmlcell.runtime/de.itemis.mps.editor.htmlcell.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/intentionsmenu/com.mbeddr.mpsutil.intentions.runtime/com.mbeddr.mpsutil.intentions.runtime.msd b/code/intentionsmenu/com.mbeddr.mpsutil.intentions.runtime/com.mbeddr.mpsutil.intentions.runtime.msd
index 463086ccb..79ff9e059 100644
--- a/code/intentionsmenu/com.mbeddr.mpsutil.intentions.runtime/com.mbeddr.mpsutil.intentions.runtime.msd
+++ b/code/intentionsmenu/com.mbeddr.mpsutil.intentions.runtime/com.mbeddr.mpsutil.intentions.runtime.msd
@@ -6,7 +6,7 @@
-
+
@@ -52,6 +52,7 @@
+
diff --git a/code/intentionsmenu/com.mbeddr.mpsutil.intentions/com.mbeddr.mpsutil.intentions.mpl b/code/intentionsmenu/com.mbeddr.mpsutil.intentions/com.mbeddr.mpsutil.intentions.mpl
index 8c1bd1665..e46681b12 100644
--- a/code/intentionsmenu/com.mbeddr.mpsutil.intentions/com.mbeddr.mpsutil.intentions.mpl
+++ b/code/intentionsmenu/com.mbeddr.mpsutil.intentions/com.mbeddr.mpsutil.intentions.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -31,6 +31,7 @@
+
@@ -56,8 +57,8 @@
+
-
@@ -130,6 +131,7 @@
+
diff --git a/code/languages/com.mbeddr.mpsutil.intentions.sandboxlang/com.mbeddr.mpsutil.intentions.sandboxlang.mpl b/code/languages/com.mbeddr.mpsutil.intentions.sandboxlang/com.mbeddr.mpsutil.intentions.sandboxlang.mpl
index 53f93b6be..a7d203617 100644
--- a/code/languages/com.mbeddr.mpsutil.intentions.sandboxlang/com.mbeddr.mpsutil.intentions.sandboxlang.mpl
+++ b/code/languages/com.mbeddr.mpsutil.intentions.sandboxlang/com.mbeddr.mpsutil.intentions.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/code/languages/de.itemis.model.merge.baselang/de.itemis.model.merge.baselang.mpl b/code/languages/de.itemis.model.merge.baselang/de.itemis.model.merge.baselang.mpl
index fd741a443..91a7846c6 100644
--- a/code/languages/de.itemis.model.merge.baselang/de.itemis.model.merge.baselang.mpl
+++ b/code/languages/de.itemis.model.merge.baselang/de.itemis.model.merge.baselang.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -56,7 +56,6 @@
-
diff --git a/code/languages/de.itemis.model.merge.baselang/sandbox/de.itemis.model.merge.baselang.sandbox.msd b/code/languages/de.itemis.model.merge.baselang/sandbox/de.itemis.model.merge.baselang.sandbox.msd
index 20394bbbf..f54415a23 100644
--- a/code/languages/de.itemis.model.merge.baselang/sandbox/de.itemis.model.merge.baselang.sandbox.msd
+++ b/code/languages/de.itemis.model.merge.baselang/sandbox/de.itemis.model.merge.baselang.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/languages/de.itemis.model.merge.baselang/sandbox/models/de.itemis.model.merge.baselang.sandbox.mps b/code/languages/de.itemis.model.merge.baselang/sandbox/models/de.itemis.model.merge.baselang.sandbox.mps
index bab4cc24e..5e3334eed 100644
--- a/code/languages/de.itemis.model.merge.baselang/sandbox/models/de.itemis.model.merge.baselang.sandbox.mps
+++ b/code/languages/de.itemis.model.merge.baselang/sandbox/models/de.itemis.model.merge.baselang.sandbox.mps
@@ -20,6 +20,7 @@
+
@@ -35,7 +36,6 @@
-
@@ -43,10 +43,6 @@
-
-
-
-
@@ -60,10 +56,6 @@
-
-
-
-
@@ -79,16 +71,9 @@
-
-
-
-
-
-
-
@@ -151,135 +136,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -293,27 +149,9 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
diff --git a/code/languages/de.itemis.model.merge.diamond/de.itemis.model.merge.diamond.mpl b/code/languages/de.itemis.model.merge.diamond/de.itemis.model.merge.diamond.mpl
index a856c70b6..7bf00b57d 100644
--- a/code/languages/de.itemis.model.merge.diamond/de.itemis.model.merge.diamond.mpl
+++ b/code/languages/de.itemis.model.merge.diamond/de.itemis.model.merge.diamond.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/languages/de.itemis.model.merge.simple.demo.annotated/de.itemis.model.merge.simple.demo.annotated.mpl b/code/languages/de.itemis.model.merge.simple.demo.annotated/de.itemis.model.merge.simple.demo.annotated.mpl
index 736effce3..bed6c4d45 100644
--- a/code/languages/de.itemis.model.merge.simple.demo.annotated/de.itemis.model.merge.simple.demo.annotated.mpl
+++ b/code/languages/de.itemis.model.merge.simple.demo.annotated/de.itemis.model.merge.simple.demo.annotated.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/languages/de.itemis.model.merge/de.itemis.model.merge.mpl b/code/languages/de.itemis.model.merge/de.itemis.model.merge.mpl
index 882905de2..ca98cdc91 100644
--- a/code/languages/de.itemis.model.merge/de.itemis.model.merge.mpl
+++ b/code/languages/de.itemis.model.merge/de.itemis.model.merge.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -59,8 +59,6 @@
-
-
@@ -68,11 +66,9 @@
-
-
@@ -80,7 +76,6 @@
-
diff --git a/code/languages/de.itemis.model.merge/models/de.itemis.model.merge.behavior.mps b/code/languages/de.itemis.model.merge/models/de.itemis.model.merge.behavior.mps
index e91d96829..911ce3dfa 100644
--- a/code/languages/de.itemis.model.merge/models/de.itemis.model.merge.behavior.mps
+++ b/code/languages/de.itemis.model.merge/models/de.itemis.model.merge.behavior.mps
@@ -19,7 +19,7 @@
-
+
diff --git a/code/languages/de.itemis.model.simple.demo.children/de.itemis.model.simple.demo.children.mpl b/code/languages/de.itemis.model.simple.demo.children/de.itemis.model.simple.demo.children.mpl
index 974705050..3df9ad5c5 100644
--- a/code/languages/de.itemis.model.simple.demo.children/de.itemis.model.simple.demo.children.mpl
+++ b/code/languages/de.itemis.model.simple.demo.children/de.itemis.model.simple.demo.children.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/languages/de.itemis.model.simple.demo.collection.keeper/de.itemis.model.simple.demo.collection.keeper.mpl b/code/languages/de.itemis.model.simple.demo.collection.keeper/de.itemis.model.simple.demo.collection.keeper.mpl
index b7c17f781..4f980d785 100644
--- a/code/languages/de.itemis.model.simple.demo.collection.keeper/de.itemis.model.simple.demo.collection.keeper.mpl
+++ b/code/languages/de.itemis.model.simple.demo.collection.keeper/de.itemis.model.simple.demo.collection.keeper.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/languages/de.itemis.model.simple.demo.collection/de.itemis.model.simple.demo.collection.mpl b/code/languages/de.itemis.model.simple.demo.collection/de.itemis.model.simple.demo.collection.mpl
index 037fb6b2f..4821ea89a 100644
--- a/code/languages/de.itemis.model.simple.demo.collection/de.itemis.model.simple.demo.collection.mpl
+++ b/code/languages/de.itemis.model.simple.demo.collection/de.itemis.model.simple.demo.collection.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/languages/de.itemis.model.simple.demo.property/de.itemis.model.simple.demo.property.mpl b/code/languages/de.itemis.model.simple.demo.property/de.itemis.model.simple.demo.property.mpl
index a47af5c2e..a0f5a8d82 100644
--- a/code/languages/de.itemis.model.simple.demo.property/de.itemis.model.simple.demo.property.mpl
+++ b/code/languages/de.itemis.model.simple.demo.property/de.itemis.model.simple.demo.property.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/languages/de.itemis.model.simple.demo.reference/de.itemis.model.simple.demo.reference.mpl b/code/languages/de.itemis.model.simple.demo.reference/de.itemis.model.simple.demo.reference.mpl
index 6d5e971ca..1efa4876e 100644
--- a/code/languages/de.itemis.model.simple.demo.reference/de.itemis.model.simple.demo.reference.mpl
+++ b/code/languages/de.itemis.model.simple.demo.reference/de.itemis.model.simple.demo.reference.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/langvis/languages/com.dslfoundry.langvis.demolang/com.dslfoundry.langvis.demolang.mpl b/code/langvis/languages/com.dslfoundry.langvis.demolang/com.dslfoundry.langvis.demolang.mpl
index c31f78ec1..126ee83e1 100644
--- a/code/langvis/languages/com.dslfoundry.langvis.demolang/com.dslfoundry.langvis.demolang.mpl
+++ b/code/langvis/languages/com.dslfoundry.langvis.demolang/com.dslfoundry.langvis.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/langvis/solutions/com.dslfoundry.langvis.demo/com.dslfoundry.langvis.demo.msd b/code/langvis/solutions/com.dslfoundry.langvis.demo/com.dslfoundry.langvis.demo.msd
index f1e1606f6..d0d45ccac 100644
--- a/code/langvis/solutions/com.dslfoundry.langvis.demo/com.dslfoundry.langvis.demo.msd
+++ b/code/langvis/solutions/com.dslfoundry.langvis.demo/com.dslfoundry.langvis.demo.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/langvis/solutions/com.dslfoundry.langvis.plugin/com.dslfoundry.langvis.plugin.msd b/code/langvis/solutions/com.dslfoundry.langvis.plugin/com.dslfoundry.langvis.plugin.msd
index d2a4fd5a3..5cf019685 100644
--- a/code/langvis/solutions/com.dslfoundry.langvis.plugin/com.dslfoundry.langvis.plugin.msd
+++ b/code/langvis/solutions/com.dslfoundry.langvis.plugin/com.dslfoundry.langvis.plugin.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/linenumbers/de.itemis.mps.linenumbers/de.itemis.mps.linenumbers.msd b/code/linenumbers/de.itemis.mps.linenumbers/de.itemis.mps.linenumbers.msd
index 99eb5f51f..187e8f0d7 100644
--- a/code/linenumbers/de.itemis.mps.linenumbers/de.itemis.mps.linenumbers.msd
+++ b/code/linenumbers/de.itemis.mps.linenumbers/de.itemis.mps.linenumbers.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/math/languages/de.itemis.mps.editor.math.demolang/de.itemis.mps.editor.math.demolang.mpl b/code/math/languages/de.itemis.mps.editor.math.demolang/de.itemis.mps.editor.math.demolang.mpl
index 9b0e60cb2..d20686195 100644
--- a/code/math/languages/de.itemis.mps.editor.math.demolang/de.itemis.mps.editor.math.demolang.mpl
+++ b/code/math/languages/de.itemis.mps.editor.math.demolang/de.itemis.mps.editor.math.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/math/languages/de.itemis.mps.editor.math.java/de.itemis.mps.editor.math.java.mpl b/code/math/languages/de.itemis.mps.editor.math.java/de.itemis.mps.editor.math.java.mpl
index f193a54b2..219b0046f 100644
--- a/code/math/languages/de.itemis.mps.editor.math.java/de.itemis.mps.editor.math.java.mpl
+++ b/code/math/languages/de.itemis.mps.editor.math.java/de.itemis.mps.editor.math.java.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -29,6 +29,7 @@
+
@@ -40,7 +41,6 @@
-
@@ -50,11 +50,9 @@
-
-
diff --git a/code/math/languages/de.itemis.mps.editor.math.notations/de.itemis.mps.editor.math.notations.mpl b/code/math/languages/de.itemis.mps.editor.math.notations/de.itemis.mps.editor.math.notations.mpl
index fb547af9a..3d6042cdf 100644
--- a/code/math/languages/de.itemis.mps.editor.math.notations/de.itemis.mps.editor.math.notations.mpl
+++ b/code/math/languages/de.itemis.mps.editor.math.notations/de.itemis.mps.editor.math.notations.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -62,8 +62,6 @@
-
-
@@ -74,11 +72,9 @@
-
-
@@ -88,7 +84,6 @@
-
diff --git a/code/math/languages/de.itemis.mps.editor.math/de.itemis.mps.editor.math.mpl b/code/math/languages/de.itemis.mps.editor.math/de.itemis.mps.editor.math.mpl
index 4f5e8ee39..1e3a0f363 100644
--- a/code/math/languages/de.itemis.mps.editor.math/de.itemis.mps.editor.math.mpl
+++ b/code/math/languages/de.itemis.mps.editor.math/de.itemis.mps.editor.math.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -63,8 +63,6 @@
-
-
@@ -72,11 +70,9 @@
-
-
@@ -87,7 +83,6 @@
-
diff --git a/code/math/solutions/de.itemis.mps.editor.math.runtime/de.itemis.mps.editor.math.runtime.msd b/code/math/solutions/de.itemis.mps.editor.math.runtime/de.itemis.mps.editor.math.runtime.msd
index f0b424b0e..17e3aee78 100644
--- a/code/math/solutions/de.itemis.mps.editor.math.runtime/de.itemis.mps.editor.math.runtime.msd
+++ b/code/math/solutions/de.itemis.mps.editor.math.runtime/de.itemis.mps.editor.math.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/math/solutions/de.itemis.mps.editor.math.sandbox/de.itemis.mps.editor.math.sandbox.msd b/code/math/solutions/de.itemis.mps.editor.math.sandbox/de.itemis.mps.editor.math.sandbox.msd
index 49919bc51..4f29a3b52 100644
--- a/code/math/solutions/de.itemis.mps.editor.math.sandbox/de.itemis.mps.editor.math.sandbox.msd
+++ b/code/math/solutions/de.itemis.mps.editor.math.sandbox/de.itemis.mps.editor.math.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/math/solutions/de.itemis.mps.editor.math.symbols/de.itemis.mps.editor.math.symbols.msd b/code/math/solutions/de.itemis.mps.editor.math.symbols/de.itemis.mps.editor.math.symbols.msd
index 9914a42dd..1396f0a7f 100644
--- a/code/math/solutions/de.itemis.mps.editor.math.symbols/de.itemis.mps.editor.math.symbols.msd
+++ b/code/math/solutions/de.itemis.mps.editor.math.symbols/de.itemis.mps.editor.math.symbols.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/model-api/org.modelix.model.api/org.modelix.model.api.msd b/code/model-api/org.modelix.model.api/org.modelix.model.api.msd
index b2be98033..828ee6391 100644
--- a/code/model-api/org.modelix.model.api/org.modelix.model.api.msd
+++ b/code/model-api/org.modelix.model.api/org.modelix.model.api.msd
@@ -13,7 +13,7 @@
-
+
diff --git a/code/model-api/org.modelix.model.mpsadapters/models/org.modelix.model.mpsadapters.mps.mps b/code/model-api/org.modelix.model.mpsadapters/models/org.modelix.model.mpsadapters.mps.mps
index 7f74778ea..de28bbeb8 100644
--- a/code/model-api/org.modelix.model.mpsadapters/models/org.modelix.model.mpsadapters.mps.mps
+++ b/code/model-api/org.modelix.model.mpsadapters/models/org.modelix.model.mpsadapters.mps.mps
@@ -45,6 +45,8 @@
+
+
@@ -13894,14 +13896,27 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -14586,14 +14601,27 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -30196,14 +30224,27 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/code/model-api/org.modelix.model.mpsadapters/org.modelix.model.mpsadapters.msd b/code/model-api/org.modelix.model.mpsadapters/org.modelix.model.mpsadapters.msd
index 26e4c0417..f8e6b64b1 100644
--- a/code/model-api/org.modelix.model.mpsadapters/org.modelix.model.mpsadapters.msd
+++ b/code/model-api/org.modelix.model.mpsadapters/org.modelix.model.mpsadapters.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/model-api/org.modelix.model.repositoryconcepts/org.modelix.model.repositoryconcepts.mpl b/code/model-api/org.modelix.model.repositoryconcepts/org.modelix.model.repositoryconcepts.mpl
index 727b6ee59..d4e44155a 100644
--- a/code/model-api/org.modelix.model.repositoryconcepts/org.modelix.model.repositoryconcepts.mpl
+++ b/code/model-api/org.modelix.model.repositoryconcepts/org.modelix.model.repositoryconcepts.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/model-api/test.org.modelix.model.mpsadapters/models/test.org.modelix.model.mpsadapters.wrappingmodelapi@tests.mps b/code/model-api/test.org.modelix.model.mpsadapters/models/test.org.modelix.model.mpsadapters.wrappingmodelapi@tests.mps
index 417116f56..d6fe2085d 100644
--- a/code/model-api/test.org.modelix.model.mpsadapters/models/test.org.modelix.model.mpsadapters.wrappingmodelapi@tests.mps
+++ b/code/model-api/test.org.modelix.model.mpsadapters/models/test.org.modelix.model.mpsadapters.wrappingmodelapi@tests.mps
@@ -1343,7 +1343,7 @@
-
+
diff --git a/code/model-api/test.org.modelix.model.mpsadapters/test.org.modelix.model.mpsadapters.msd b/code/model-api/test.org.modelix.model.mpsadapters/test.org.modelix.model.mpsadapters.msd
index 2e7d2d81c..0d3c7e9e2 100644
--- a/code/model-api/test.org.modelix.model.mpsadapters/test.org.modelix.model.mpsadapters.msd
+++ b/code/model-api/test.org.modelix.model.mpsadapters/test.org.modelix.model.mpsadapters.msd
@@ -6,7 +6,7 @@
-
+
@@ -39,7 +39,6 @@
-
diff --git a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/com.mbeddr.mpsutil.modellisteners.runtime.msd b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/com.mbeddr.mpsutil.modellisteners.runtime.msd
index 489b52109..e137b1e06 100644
--- a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/com.mbeddr.mpsutil.modellisteners.runtime.msd
+++ b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/com.mbeddr.mpsutil.modellisteners.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/models/com/mbeddr/mpsutil/modellisteners/runtime/plugin.mps b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/models/com/mbeddr/mpsutil/modellisteners/runtime/plugin.mps
index 39fcb0891..62c349ca8 100644
--- a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/models/com/mbeddr/mpsutil/modellisteners/runtime/plugin.mps
+++ b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.runtime/models/com/mbeddr/mpsutil/modellisteners/runtime/plugin.mps
@@ -17,6 +17,11 @@
+
+
+
+
+
@@ -30,6 +35,7 @@
+
@@ -211,6 +217,9 @@
+
+
+
diff --git a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandbox/com.mbeddr.mpsutil.modellisteners.sandbox.msd b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandbox/com.mbeddr.mpsutil.modellisteners.sandbox.msd
index 461c2d60b..30d1fe1c9 100644
--- a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandbox/com.mbeddr.mpsutil.modellisteners.sandbox.msd
+++ b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandbox/com.mbeddr.mpsutil.modellisteners.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandboxlang/com.mbeddr.mpsutil.modellisteners.sandboxlang.mpl b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandboxlang/com.mbeddr.mpsutil.modellisteners.sandboxlang.mpl
index e53b1c327..26ec597e3 100644
--- a/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandboxlang/com.mbeddr.mpsutil.modellisteners.sandboxlang.mpl
+++ b/code/modellisteners/com.mbeddr.mpsutil.modellisteners.sandboxlang/com.mbeddr.mpsutil.modellisteners.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/modellisteners/com.mbeddr.mpsutil.modellisteners/com.mbeddr.mpsutil.modellisteners.mpl b/code/modellisteners/com.mbeddr.mpsutil.modellisteners/com.mbeddr.mpsutil.modellisteners.mpl
index 977eb20c9..d062cacb2 100644
--- a/code/modellisteners/com.mbeddr.mpsutil.modellisteners/com.mbeddr.mpsutil.modellisteners.mpl
+++ b/code/modellisteners/com.mbeddr.mpsutil.modellisteners/com.mbeddr.mpsutil.modellisteners.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -49,20 +49,14 @@
-
-
-
-
-
-
diff --git a/code/modelmerger/languages/de.itemis.mps.modelmerger/de.itemis.mps.modelmerger.mpl b/code/modelmerger/languages/de.itemis.mps.modelmerger/de.itemis.mps.modelmerger.mpl
index 07ea5c5f9..f7f62b7c7 100644
--- a/code/modelmerger/languages/de.itemis.mps.modelmerger/de.itemis.mps.modelmerger.mpl
+++ b/code/modelmerger/languages/de.itemis.mps.modelmerger/de.itemis.mps.modelmerger.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -57,19 +57,15 @@
-
-
-
-
@@ -78,7 +74,6 @@
-
diff --git a/code/modelmerger/languages/de.itemis.mps.modelmerger/sandbox/de.itemis.mps.modelmerger.testhelper.msd b/code/modelmerger/languages/de.itemis.mps.modelmerger/sandbox/de.itemis.mps.modelmerger.testhelper.msd
index 758f65c53..d562f63ad 100644
--- a/code/modelmerger/languages/de.itemis.mps.modelmerger/sandbox/de.itemis.mps.modelmerger.testhelper.msd
+++ b/code/modelmerger/languages/de.itemis.mps.modelmerger/sandbox/de.itemis.mps.modelmerger.testhelper.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/modelmerger/languages/test.de.itemis.mps.modelmerger.testlanguage/test.de.itemis.mps.modelmerger.testlanguage.mpl b/code/modelmerger/languages/test.de.itemis.mps.modelmerger.testlanguage/test.de.itemis.mps.modelmerger.testlanguage.mpl
index 4408a0a95..05bbd5b2e 100644
--- a/code/modelmerger/languages/test.de.itemis.mps.modelmerger.testlanguage/test.de.itemis.mps.modelmerger.testlanguage.mpl
+++ b/code/modelmerger/languages/test.de.itemis.mps.modelmerger.testlanguage/test.de.itemis.mps.modelmerger.testlanguage.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/modelmerger/solutions/de.itemis.mps.modelmerger.runtime/de.itemis.mps.modelmerger.runtime.msd b/code/modelmerger/solutions/de.itemis.mps.modelmerger.runtime/de.itemis.mps.modelmerger.runtime.msd
index dd8dfb656..815222d38 100644
--- a/code/modelmerger/solutions/de.itemis.mps.modelmerger.runtime/de.itemis.mps.modelmerger.runtime.msd
+++ b/code/modelmerger/solutions/de.itemis.mps.modelmerger.runtime/de.itemis.mps.modelmerger.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/modelmerger/solutions/tests.de.itemis.mps.modelmerger/tests.de.itemis.mps.modelmerger.msd b/code/modelmerger/solutions/tests.de.itemis.mps.modelmerger/tests.de.itemis.mps.modelmerger.msd
index b99541c8a..2c60dd852 100644
--- a/code/modelmerger/solutions/tests.de.itemis.mps.modelmerger/tests.de.itemis.mps.modelmerger.msd
+++ b/code/modelmerger/solutions/tests.de.itemis.mps.modelmerger/tests.de.itemis.mps.modelmerger.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/mouseselection/languages/de.itemis.mps.selection.intentions/de.itemis.mps.selection.intentions.mpl b/code/mouseselection/languages/de.itemis.mps.selection.intentions/de.itemis.mps.selection.intentions.mpl
index 52bf1dcdd..d6515cb91 100644
--- a/code/mouseselection/languages/de.itemis.mps.selection.intentions/de.itemis.mps.selection.intentions.mpl
+++ b/code/mouseselection/languages/de.itemis.mps.selection.intentions/de.itemis.mps.selection.intentions.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -53,7 +53,6 @@
-
diff --git a/code/mouseselection/solutions/de.itemis.mps.selection.runtime/de.itemis.mps.selection.runtime.msd b/code/mouseselection/solutions/de.itemis.mps.selection.runtime/de.itemis.mps.selection.runtime.msd
index 324d7d291..827fccbea 100644
--- a/code/mouseselection/solutions/de.itemis.mps.selection.runtime/de.itemis.mps.selection.runtime.msd
+++ b/code/mouseselection/solutions/de.itemis.mps.selection.runtime/de.itemis.mps.selection.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/multiline/languages/de.slisson.mps.editor.multiline.test/de.slisson.mps.editor.multiline.test.mpl b/code/multiline/languages/de.slisson.mps.editor.multiline.test/de.slisson.mps.editor.multiline.test.mpl
index a83af8c08..cc6a3fbf8 100644
--- a/code/multiline/languages/de.slisson.mps.editor.multiline.test/de.slisson.mps.editor.multiline.test.mpl
+++ b/code/multiline/languages/de.slisson.mps.editor.multiline.test/de.slisson.mps.editor.multiline.test.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -61,7 +61,6 @@
-
diff --git a/code/multiline/languages/demolang/demolang.mpl b/code/multiline/languages/demolang/demolang.mpl
index ca32d586f..9ec305678 100644
--- a/code/multiline/languages/demolang/demolang.mpl
+++ b/code/multiline/languages/demolang/demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/multiline/languages/multiline/multiline.mpl b/code/multiline/languages/multiline/multiline.mpl
index 028af4ffe..e01a45895 100644
--- a/code/multiline/languages/multiline/multiline.mpl
+++ b/code/multiline/languages/multiline/multiline.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -57,8 +57,6 @@
-
-
@@ -69,12 +67,10 @@
-
-
@@ -84,7 +80,6 @@
-
diff --git a/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/models/de/slisson/mps/editor/multiline/cells.mps b/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/models/de/slisson/mps/editor/multiline/cells.mps
index 951c202b0..06d35e313 100644
--- a/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/models/de/slisson/mps/editor/multiline/cells.mps
+++ b/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/models/de/slisson/mps/editor/multiline/cells.mps
@@ -3450,13 +3450,27 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
diff --git a/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/runtime.msd b/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/runtime.msd
index 1e464ae1b..06b7412c0 100644
--- a/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/runtime.msd
+++ b/code/multiline/solutions/de.slisson.mps.editor.multiline.runtime/runtime.msd
@@ -9,7 +9,7 @@
-
+
diff --git a/code/multiline/solutions/de.slisson.mps.editor.multiline.sandbox/de.slisson.mps.editor.multiline.sandbox.msd b/code/multiline/solutions/de.slisson.mps.editor.multiline.sandbox/de.slisson.mps.editor.multiline.sandbox.msd
index 73f8be8b2..e860c7f02 100644
--- a/code/multiline/solutions/de.slisson.mps.editor.multiline.sandbox/de.slisson.mps.editor.multiline.sandbox.msd
+++ b/code/multiline/solutions/de.slisson.mps.editor.multiline.sandbox/de.slisson.mps.editor.multiline.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/multiline/solutions/test.de.slisson.mps.editor.multiline/test.de.slisson.mps.editor.multiline.msd b/code/multiline/solutions/test.de.slisson.mps.editor.multiline/test.de.slisson.mps.editor.multiline.msd
index 730838ebe..f76b9d042 100644
--- a/code/multiline/solutions/test.de.slisson.mps.editor.multiline/test.de.slisson.mps.editor.multiline.msd
+++ b/code/multiline/solutions/test.de.slisson.mps.editor.multiline/test.de.slisson.mps.editor.multiline.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/nodeversioning/languages/de.itemis.mps.nodeversioning/de.itemis.mps.nodeversioning.mpl b/code/nodeversioning/languages/de.itemis.mps.nodeversioning/de.itemis.mps.nodeversioning.mpl
index 81db00467..436f74088 100644
--- a/code/nodeversioning/languages/de.itemis.mps.nodeversioning/de.itemis.mps.nodeversioning.mpl
+++ b/code/nodeversioning/languages/de.itemis.mps.nodeversioning/de.itemis.mps.nodeversioning.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/nodeversioning/solutions/de.itemis.mps.nodeversioning.runtime.msd b/code/nodeversioning/solutions/de.itemis.mps.nodeversioning.runtime.msd
index 0346cf3fc..44f3d5d89 100644
--- a/code/nodeversioning/solutions/de.itemis.mps.nodeversioning.runtime.msd
+++ b/code/nodeversioning/solutions/de.itemis.mps.nodeversioning.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/nodeversioning/tests/de.itemis.mps.nodeversioning.test/de.itemis.mps.nodeversioning.test.msd b/code/nodeversioning/tests/de.itemis.mps.nodeversioning.test/de.itemis.mps.nodeversioning.test.msd
index 3b05807ba..9aec938d7 100644
--- a/code/nodeversioning/tests/de.itemis.mps.nodeversioning.test/de.itemis.mps.nodeversioning.test.msd
+++ b/code/nodeversioning/tests/de.itemis.mps.nodeversioning.test/de.itemis.mps.nodeversioning.test.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/pagination/languages/de.itemis.mps.editor.pagination.demolang/de.itemis.mps.editor.pagination.demolang.mpl b/code/pagination/languages/de.itemis.mps.editor.pagination.demolang/de.itemis.mps.editor.pagination.demolang.mpl
index 8bc8b865d..4926ef82d 100644
--- a/code/pagination/languages/de.itemis.mps.editor.pagination.demolang/de.itemis.mps.editor.pagination.demolang.mpl
+++ b/code/pagination/languages/de.itemis.mps.editor.pagination.demolang/de.itemis.mps.editor.pagination.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/pagination/languages/de.itemis.mps.editor.pagination/de.itemis.mps.editor.pagination.mpl b/code/pagination/languages/de.itemis.mps.editor.pagination/de.itemis.mps.editor.pagination.mpl
index 0507c4de5..46087e1eb 100644
--- a/code/pagination/languages/de.itemis.mps.editor.pagination/de.itemis.mps.editor.pagination.mpl
+++ b/code/pagination/languages/de.itemis.mps.editor.pagination/de.itemis.mps.editor.pagination.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -57,8 +57,6 @@
-
-
@@ -66,11 +64,9 @@
-
-
@@ -78,7 +74,6 @@
-
diff --git a/code/pagination/solutions/de.itemis.mps.editor.pagination.demolang.sandbox/de.itemis.mps.editor.pagination.demolang.sandbox.msd b/code/pagination/solutions/de.itemis.mps.editor.pagination.demolang.sandbox/de.itemis.mps.editor.pagination.demolang.sandbox.msd
index 65845c8d6..decfe85ac 100644
--- a/code/pagination/solutions/de.itemis.mps.editor.pagination.demolang.sandbox/de.itemis.mps.editor.pagination.demolang.sandbox.msd
+++ b/code/pagination/solutions/de.itemis.mps.editor.pagination.demolang.sandbox/de.itemis.mps.editor.pagination.demolang.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/pagination/solutions/de.itemis.mps.editor.pagination.runtime/de.itemis.mps.editor.pagination.runtime.msd b/code/pagination/solutions/de.itemis.mps.editor.pagination.runtime/de.itemis.mps.editor.pagination.runtime.msd
index 34f5f3508..b219968e7 100644
--- a/code/pagination/solutions/de.itemis.mps.editor.pagination.runtime/de.itemis.mps.editor.pagination.runtime.msd
+++ b/code/pagination/solutions/de.itemis.mps.editor.pagination.runtime/de.itemis.mps.editor.pagination.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/pagination/solutions/de.itemis.mps.editor.pagination.test/de.itemis.mps.editor.pagination.test.msd b/code/pagination/solutions/de.itemis.mps.editor.pagination.test/de.itemis.mps.editor.pagination.test.msd
index e3625b855..9da79e4eb 100644
--- a/code/pagination/solutions/de.itemis.mps.editor.pagination.test/de.itemis.mps.editor.pagination.test.msd
+++ b/code/pagination/solutions/de.itemis.mps.editor.pagination.test/de.itemis.mps.editor.pagination.test.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/plaintextgen/languages/com.dslfoundry.plaintextflow/com.dslfoundry.plaintextflow.mpl b/code/plaintextgen/languages/com.dslfoundry.plaintextflow/com.dslfoundry.plaintextflow.mpl
index 17a8fee95..56a0d77ac 100644
--- a/code/plaintextgen/languages/com.dslfoundry.plaintextflow/com.dslfoundry.plaintextflow.mpl
+++ b/code/plaintextgen/languages/com.dslfoundry.plaintextflow/com.dslfoundry.plaintextflow.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.nestedlist/com.dslfoundry.plaintextgen.example.nestedlist.mpl b/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.nestedlist/com.dslfoundry.plaintextgen.example.nestedlist.mpl
index 6116aafbe..c806f7cdd 100644
--- a/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.nestedlist/com.dslfoundry.plaintextgen.example.nestedlist.mpl
+++ b/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.nestedlist/com.dslfoundry.plaintextgen.example.nestedlist.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.testlang/com.dslfoundry.plaintextgen.example.testlang.mpl b/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.testlang/com.dslfoundry.plaintextgen.example.testlang.mpl
index 531dd4927..f6d2b0e55 100644
--- a/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.testlang/com.dslfoundry.plaintextgen.example.testlang.mpl
+++ b/code/plaintextgen/languages/com.dslfoundry.plaintextgen.example.testlang/com.dslfoundry.plaintextgen.example.testlang.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/code/plaintextgen/languages/com.dslfoundry.plaintextgen/com.dslfoundry.plaintextgen.mpl b/code/plaintextgen/languages/com.dslfoundry.plaintextgen/com.dslfoundry.plaintextgen.mpl
index a3ec468d6..fa7cfb5b4 100644
--- a/code/plaintextgen/languages/com.dslfoundry.plaintextgen/com.dslfoundry.plaintextgen.mpl
+++ b/code/plaintextgen/languages/com.dslfoundry.plaintextgen/com.dslfoundry.plaintextgen.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.nestedlist.sandbox/com.dslfoundry.plaintextgen.example.nestedlist.sandbox.msd b/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.nestedlist.sandbox/com.dslfoundry.plaintextgen.example.nestedlist.sandbox.msd
index d1975ed32..4f1ee0fa8 100644
--- a/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.nestedlist.sandbox/com.dslfoundry.plaintextgen.example.nestedlist.sandbox.msd
+++ b/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.nestedlist.sandbox/com.dslfoundry.plaintextgen.example.nestedlist.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.plaintextflow/com.dslfoundry.plaintextgen.example.plaintextflow.msd b/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.plaintextflow/com.dslfoundry.plaintextgen.example.plaintextflow.msd
index e78899613..ca028b38c 100644
--- a/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.plaintextflow/com.dslfoundry.plaintextgen.example.plaintextflow.msd
+++ b/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.plaintextflow/com.dslfoundry.plaintextgen.example.plaintextflow.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.testlang.sandbox/com.dslfoundry.plaintextgen.example.testlang.sandbox.msd b/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.testlang.sandbox/com.dslfoundry.plaintextgen.example.testlang.sandbox.msd
index dffc7fce2..53ae90769 100644
--- a/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.testlang.sandbox/com.dslfoundry.plaintextgen.example.testlang.sandbox.msd
+++ b/code/plaintextgen/solutions/com.dslfoundry.plaintextgen.example.testlang.sandbox/com.dslfoundry.plaintextgen.example.testlang.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/com.mbeddr.mpsutil.projectview.runtime.msd b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/com.mbeddr.mpsutil.projectview.runtime.msd
index 6b961e87b..125538881 100644
--- a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/com.mbeddr.mpsutil.projectview.runtime.msd
+++ b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/com.mbeddr.mpsutil.projectview.runtime.msd
@@ -6,7 +6,7 @@
-
+
@@ -24,6 +24,7 @@
a1250a4d-c090-42c3-ad7c-d298a3357dd4(jetbrains.mps.make.runtime)
d44dab97-aaac-44cb-9745-8a14db674c03(jetbrains.mps.baseLanguage.tuples.runtime)
215c4c45-ba99-49f5-9ab7-4b6901a63cfd(MPS.Generator)
+ f647e48e-4568-4f4c-b48a-1546492c6a2e(org.jdom)
@@ -34,6 +35,7 @@
+
@@ -59,6 +61,7 @@
+
diff --git a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime.mps b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime.mps
index 2431f05cd..2f365af1a 100644
--- a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime.mps
+++ b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime.mps
@@ -1,6 +1,7 @@
+
@@ -26,9 +27,9 @@
-
+
@@ -6482,11 +6483,6 @@
-
-
-
-
-
@@ -6535,11 +6531,6 @@
-
-
-
-
-
diff --git a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree.mps b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree.mps
index 0803d5e09..3c7d064be 100644
--- a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree.mps
+++ b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree.mps
@@ -51,7 +51,6 @@
-
@@ -83,6 +82,7 @@
+
@@ -1398,7 +1398,7 @@
-
+
@@ -9113,14 +9113,12 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
@@ -9560,14 +9558,12 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree/highlighter.mps b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree/highlighter.mps
index ad439021c..cc485a682 100644
--- a/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree/highlighter.mps
+++ b/code/projectview/com.mbeddr.mpsutil.projectview.runtime/models/com/mbeddr/mpsutil/projectview/runtime/tree/highlighter.mps
@@ -5,6 +5,9 @@
+
+
+
@@ -40,7 +43,9 @@
-
+
+
+
@@ -151,6 +156,9 @@
+
+
+
@@ -162,7 +170,6 @@
-
@@ -174,6 +181,7 @@
+
@@ -195,6 +203,7 @@
+
@@ -305,6 +314,13 @@
+
+
+
+
+
+
+
@@ -8198,16 +8214,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -8236,6 +8242,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -8269,6 +8289,7 @@
+
@@ -8291,64 +8312,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -8357,6 +8320,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -8372,129 +8366,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
@@ -8510,35 +8527,26 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
@@ -8604,255 +8612,266 @@
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
@@ -8911,6 +8930,7 @@
+
@@ -8938,63 +8958,633 @@
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
diff --git a/code/projectview/com.mbeddr.mpsutil.projectview.vcs/com.mbeddr.mpsutil.projectview.vcs.msd b/code/projectview/com.mbeddr.mpsutil.projectview.vcs/com.mbeddr.mpsutil.projectview.vcs.msd
index d0b45bf2f..399c25d3f 100644
--- a/code/projectview/com.mbeddr.mpsutil.projectview.vcs/com.mbeddr.mpsutil.projectview.vcs.msd
+++ b/code/projectview/com.mbeddr.mpsutil.projectview.vcs/com.mbeddr.mpsutil.projectview.vcs.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/projectview/com.mbeddr.mpsutil.projectview.views/com.mbeddr.mpsutil.projectview.views.msd b/code/projectview/com.mbeddr.mpsutil.projectview.views/com.mbeddr.mpsutil.projectview.views.msd
index 36e68af55..8f083eb3a 100644
--- a/code/projectview/com.mbeddr.mpsutil.projectview.views/com.mbeddr.mpsutil.projectview.views.msd
+++ b/code/projectview/com.mbeddr.mpsutil.projectview.views/com.mbeddr.mpsutil.projectview.views.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/projectview/com.mbeddr.mpsutil.projectview/com.mbeddr.mpsutil.projectview.mpl b/code/projectview/com.mbeddr.mpsutil.projectview/com.mbeddr.mpsutil.projectview.mpl
index 4b4442317..6351f7b04 100644
--- a/code/projectview/com.mbeddr.mpsutil.projectview/com.mbeddr.mpsutil.projectview.mpl
+++ b/code/projectview/com.mbeddr.mpsutil.projectview/com.mbeddr.mpsutil.projectview.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -32,6 +32,7 @@
+
@@ -44,7 +45,6 @@
-
@@ -58,8 +58,6 @@
-
-
@@ -68,11 +66,9 @@
-
-
@@ -81,7 +77,6 @@
-
diff --git a/code/querylist/com.mbeddr.mpsutil.editor.querylist.demolang/com.mbeddr.mpsutil.editor.querylist.demolang.mpl b/code/querylist/com.mbeddr.mpsutil.editor.querylist.demolang/com.mbeddr.mpsutil.editor.querylist.demolang.mpl
index f1bbe8ea2..97fcb1a81 100644
--- a/code/querylist/com.mbeddr.mpsutil.editor.querylist.demolang/com.mbeddr.mpsutil.editor.querylist.demolang.mpl
+++ b/code/querylist/com.mbeddr.mpsutil.editor.querylist.demolang/com.mbeddr.mpsutil.editor.querylist.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/querylist/com.mbeddr.mpsutil.editor.querylist.runtime/com.mbeddr.mpsutil.editor.querylist.runtime.msd b/code/querylist/com.mbeddr.mpsutil.editor.querylist.runtime/com.mbeddr.mpsutil.editor.querylist.runtime.msd
index 3376753d1..1e7f5a5ab 100644
--- a/code/querylist/com.mbeddr.mpsutil.editor.querylist.runtime/com.mbeddr.mpsutil.editor.querylist.runtime.msd
+++ b/code/querylist/com.mbeddr.mpsutil.editor.querylist.runtime/com.mbeddr.mpsutil.editor.querylist.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/querylist/com.mbeddr.mpsutil.editor.querylist.sandbox/com.mbeddr.mpsutil.editor.querylist.sandbox.msd b/code/querylist/com.mbeddr.mpsutil.editor.querylist.sandbox/com.mbeddr.mpsutil.editor.querylist.sandbox.msd
index 181b5bcc1..76768e1b8 100644
--- a/code/querylist/com.mbeddr.mpsutil.editor.querylist.sandbox/com.mbeddr.mpsutil.editor.querylist.sandbox.msd
+++ b/code/querylist/com.mbeddr.mpsutil.editor.querylist.sandbox/com.mbeddr.mpsutil.editor.querylist.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/querylist/com.mbeddr.mpsutil.editor.querylist/com.mbeddr.mpsutil.editor.querylist.mpl b/code/querylist/com.mbeddr.mpsutil.editor.querylist/com.mbeddr.mpsutil.editor.querylist.mpl
index 1235131f6..92bf3f29f 100644
--- a/code/querylist/com.mbeddr.mpsutil.editor.querylist/com.mbeddr.mpsutil.editor.querylist.mpl
+++ b/code/querylist/com.mbeddr.mpsutil.editor.querylist/com.mbeddr.mpsutil.editor.querylist.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -64,8 +64,6 @@
-
-
@@ -74,12 +72,10 @@
-
-
@@ -89,7 +85,6 @@
-
diff --git a/code/richtext/languages/de.slisson.mps.richtext.test/de.slisson.mps.richtext.test.mpl b/code/richtext/languages/de.slisson.mps.richtext.test/de.slisson.mps.richtext.test.mpl
index 709231fac..543e80479 100644
--- a/code/richtext/languages/de.slisson.mps.richtext.test/de.slisson.mps.richtext.test.mpl
+++ b/code/richtext/languages/de.slisson.mps.richtext.test/de.slisson.mps.richtext.test.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -54,7 +54,6 @@
-
diff --git a/code/richtext/languages/de.slisson.richtext.customcell/de.slisson.richtext.customcell.mpl b/code/richtext/languages/de.slisson.richtext.customcell/de.slisson.richtext.customcell.mpl
index e740267ba..0ca97d7ea 100644
--- a/code/richtext/languages/de.slisson.richtext.customcell/de.slisson.richtext.customcell.mpl
+++ b/code/richtext/languages/de.slisson.richtext.customcell/de.slisson.richtext.customcell.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -56,19 +56,15 @@
-
-
-
-
@@ -78,7 +74,6 @@
-
diff --git a/code/richtext/languages/javadoc/javadoc.mpl b/code/richtext/languages/javadoc/javadoc.mpl
index 8839f2ad7..63a546fb3 100644
--- a/code/richtext/languages/javadoc/javadoc.mpl
+++ b/code/richtext/languages/javadoc/javadoc.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/richtext/languages/richtext/richtext.mpl b/code/richtext/languages/richtext/richtext.mpl
index 46edce068..e938d26f4 100644
--- a/code/richtext/languages/richtext/richtext.mpl
+++ b/code/richtext/languages/richtext/richtext.mpl
@@ -7,7 +7,7 @@
-
+
diff --git a/code/richtext/solutions/de.slisson.mps.richtext.sandbox/de.slisson.mps.richtext.sandbox.msd b/code/richtext/solutions/de.slisson.mps.richtext.sandbox/de.slisson.mps.richtext.sandbox.msd
index 2fcc69797..2af57a37a 100644
--- a/code/richtext/solutions/de.slisson.mps.richtext.sandbox/de.slisson.mps.richtext.sandbox.msd
+++ b/code/richtext/solutions/de.slisson.mps.richtext.sandbox/de.slisson.mps.richtext.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/richtext/solutions/de.slisson.mps.richtext.test.runtime/de.slisson.mps.richtext.test.runtime.msd b/code/richtext/solutions/de.slisson.mps.richtext.test.runtime/de.slisson.mps.richtext.test.runtime.msd
index a35ace823..b6e1e289c 100644
--- a/code/richtext/solutions/de.slisson.mps.richtext.test.runtime/de.slisson.mps.richtext.test.runtime.msd
+++ b/code/richtext/solutions/de.slisson.mps.richtext.test.runtime/de.slisson.mps.richtext.test.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/richtext/solutions/test.de.slisson.mps.richtext/test.de.slisson.mps.richtext.msd b/code/richtext/solutions/test.de.slisson.mps.richtext/test.de.slisson.mps.richtext.msd
index 06cea290a..06826ea13 100644
--- a/code/richtext/solutions/test.de.slisson.mps.richtext/test.de.slisson.mps.richtext.msd
+++ b/code/richtext/solutions/test.de.slisson.mps.richtext/test.de.slisson.mps.richtext.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/de.q60.mps.explorer.impl/de.q60.mps.explorer.impl.msd b/code/shadowmodels/de.q60.mps.explorer.impl/de.q60.mps.explorer.impl.msd
index 0259c35b4..c92e55733 100644
--- a/code/shadowmodels/de.q60.mps.explorer.impl/de.q60.mps.explorer.impl.msd
+++ b/code/shadowmodels/de.q60.mps.explorer.impl/de.q60.mps.explorer.impl.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/de.q60.mps.explorer/de.q60.mps.explorer.msd b/code/shadowmodels/de.q60.mps.explorer/de.q60.mps.explorer.msd
index 508983e1c..d3efa354d 100644
--- a/code/shadowmodels/de.q60.mps.explorer/de.q60.mps.explorer.msd
+++ b/code/shadowmodels/de.q60.mps.explorer/de.q60.mps.explorer.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/de.q60.mps.util/de.q60.mps.util.msd b/code/shadowmodels/de.q60.mps.util/de.q60.mps.util.msd
index df80e8bb3..0007ecd46 100644
--- a/code/shadowmodels/de.q60.mps.util/de.q60.mps.util.msd
+++ b/code/shadowmodels/de.q60.mps.util/de.q60.mps.util.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.incremental.sandboxlang/de.q60.mps.incremental.sandboxlang.mpl b/code/shadowmodels/languages/de.q60.mps.incremental.sandboxlang/de.q60.mps.incremental.sandboxlang.mpl
index 802a4d088..0043ee1da 100644
--- a/code/shadowmodels/languages/de.q60.mps.incremental.sandboxlang/de.q60.mps.incremental.sandboxlang.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.incremental.sandboxlang/de.q60.mps.incremental.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.incremental/de.q60.mps.incremental.mpl b/code/shadowmodels/languages/de.q60.mps.incremental/de.q60.mps.incremental.mpl
index 999e6a15b..ac84356b2 100644
--- a/code/shadowmodels/languages/de.q60.mps.incremental/de.q60.mps.incremental.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.incremental/de.q60.mps.incremental.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -31,6 +31,7 @@
+
@@ -45,7 +46,6 @@
-
@@ -55,12 +55,10 @@
-
-
diff --git a/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions.sandboxlang/de.q60.mps.polymorphicfunctions.sandboxlang.mpl b/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions.sandboxlang/de.q60.mps.polymorphicfunctions.sandboxlang.mpl
index af9dad0ae..71782cc6d 100644
--- a/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions.sandboxlang/de.q60.mps.polymorphicfunctions.sandboxlang.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions.sandboxlang/de.q60.mps.polymorphicfunctions.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions/de.q60.mps.polymorphicfunctions.mpl b/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions/de.q60.mps.polymorphicfunctions.mpl
index 8d2d91f85..16126c92c 100644
--- a/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions/de.q60.mps.polymorphicfunctions.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.polymorphicfunctions/de.q60.mps.polymorphicfunctions.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -33,6 +33,7 @@
+
@@ -46,7 +47,6 @@
-
@@ -58,7 +58,6 @@
-
@@ -66,19 +65,15 @@
-
-
-
-
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.blext/de.q60.mps.shadowmodels.examples.blext.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.blext/de.q60.mps.shadowmodels.examples.blext.mpl
index 1b1cacff5..9e6f968aa 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.blext/de.q60.mps.shadowmodels.examples.blext.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.blext/de.q60.mps.shadowmodels.examples.blext.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.editor/de.q60.mps.shadowmodels.examples.editor.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.editor/de.q60.mps.shadowmodels.examples.editor.mpl
index 1ce3ab35a..6d5deec27 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.editor/de.q60.mps.shadowmodels.examples.editor.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.editor/de.q60.mps.shadowmodels.examples.editor.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.entities/de.q60.mps.shadowmodels.examples.entities.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.entities/de.q60.mps.shadowmodels.examples.entities.mpl
index 7d5551333..16da90d5c 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.entities/de.q60.mps.shadowmodels.examples.entities.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.entities/de.q60.mps.shadowmodels.examples.entities.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.statemachine/de.q60.mps.shadowmodels.examples.statemachine.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.statemachine/de.q60.mps.shadowmodels.examples.statemachine.mpl
index f320cb40e..c9212b604 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.statemachine/de.q60.mps.shadowmodels.examples.statemachine.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.examples.statemachine/de.q60.mps.shadowmodels.examples.statemachine.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.afterPF/de.q60.mps.shadowmodels.gen.afterPF.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.afterPF/de.q60.mps.shadowmodels.gen.afterPF.mpl
index 7b2221944..c495dab82 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.afterPF/de.q60.mps.shadowmodels.gen.afterPF.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.afterPF/de.q60.mps.shadowmodels.gen.afterPF.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -62,7 +62,6 @@
-
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.desugar/de.q60.mps.shadowmodels.gen.desugar.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.desugar/de.q60.mps.shadowmodels.gen.desugar.mpl
index 513b00b8b..0d51e3b40 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.desugar/de.q60.mps.shadowmodels.gen.desugar.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.desugar/de.q60.mps.shadowmodels.gen.desugar.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -54,7 +54,6 @@
-
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.typesystem/de.q60.mps.shadowmodels.gen.typesystem.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.typesystem/de.q60.mps.shadowmodels.gen.typesystem.mpl
index 8fe8bbc76..bee269087 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.typesystem/de.q60.mps.shadowmodels.gen.typesystem.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.gen.typesystem/de.q60.mps.shadowmodels.gen.typesystem.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -64,6 +64,7 @@
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.repository/de.q60.mps.shadowmodels.repository.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.repository/de.q60.mps.shadowmodels.repository.mpl
index 89027cdec..9e295d537 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.repository/de.q60.mps.shadowmodels.repository.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.repository/de.q60.mps.shadowmodels.repository.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.runtimelang/de.q60.mps.shadowmodels.runtimelang.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.runtimelang/de.q60.mps.shadowmodels.runtimelang.mpl
index f44dfc8c0..c14d41f3d 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.runtimelang/de.q60.mps.shadowmodels.runtimelang.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.runtimelang/de.q60.mps.shadowmodels.runtimelang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.editor/de.q60.mps.shadowmodels.target.editor.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.editor/de.q60.mps.shadowmodels.target.editor.mpl
index a33c33af1..447c72f99 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.editor/de.q60.mps.shadowmodels.target.editor.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.editor/de.q60.mps.shadowmodels.target.editor.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.text/de.q60.mps.shadowmodels.target.text.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.text/de.q60.mps.shadowmodels.target.text.mpl
index 5a021ab08..777818c0d 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.text/de.q60.mps.shadowmodels.target.text.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.target.text/de.q60.mps.shadowmodels.target.text.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/de.q60.mps.shadowmodels.transformation.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/de.q60.mps.shadowmodels.transformation.mpl
index 36c2531d9..4d5e0e312 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/de.q60.mps.shadowmodels.transformation.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/de.q60.mps.shadowmodels.transformation.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -41,6 +41,7 @@
+
@@ -54,7 +55,6 @@
-
@@ -67,8 +67,6 @@
-
-
@@ -80,19 +78,15 @@
-
-
-
-
@@ -207,6 +201,7 @@
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/models/plugin.mps b/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/models/plugin.mps
index b78cc3b13..5d4c7341c 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/models/plugin.mps
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.transformation/models/plugin.mps
@@ -11,6 +11,11 @@
+
+
+
+
+
@@ -18,6 +23,7 @@
+
@@ -46,6 +52,9 @@
+
+
+
diff --git a/code/shadowmodels/languages/de.q60.mps.shadowmodels.util/de.q60.mps.shadowmodels.util.mpl b/code/shadowmodels/languages/de.q60.mps.shadowmodels.util/de.q60.mps.shadowmodels.util.mpl
index eacbc6e83..b8d591f27 100644
--- a/code/shadowmodels/languages/de.q60.mps.shadowmodels.util/de.q60.mps.shadowmodels.util.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.shadowmodels.util/de.q60.mps.shadowmodels.util.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -57,19 +57,15 @@
-
-
-
-
@@ -79,7 +75,6 @@
-
diff --git a/code/shadowmodels/languages/de.q60.mps.virtualinterfaces.sandboxlang/de.q60.mps.virtualinterfaces.sandboxlang.mpl b/code/shadowmodels/languages/de.q60.mps.virtualinterfaces.sandboxlang/de.q60.mps.virtualinterfaces.sandboxlang.mpl
index 7dbe4fd21..089149b38 100644
--- a/code/shadowmodels/languages/de.q60.mps.virtualinterfaces.sandboxlang/de.q60.mps.virtualinterfaces.sandboxlang.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.virtualinterfaces.sandboxlang/de.q60.mps.virtualinterfaces.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/de.q60.mps.virtualinterfaces.mpl b/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/de.q60.mps.virtualinterfaces.mpl
index 35c56680f..95c74c7e1 100644
--- a/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/de.q60.mps.virtualinterfaces.mpl
+++ b/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/de.q60.mps.virtualinterfaces.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -51,22 +51,14 @@
-
-
-
-
-
-
-
-
diff --git a/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/models/plugin.mps b/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/models/plugin.mps
index 7edfe3d1e..9db5985d6 100644
--- a/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/models/plugin.mps
+++ b/code/shadowmodels/languages/de.q60.mps.virtualinterfaces/models/plugin.mps
@@ -10,9 +10,15 @@
+
+
+
+
+
+
@@ -33,6 +39,9 @@
+
+
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.collections.libs/de.q60.mps.collections.libs.msd b/code/shadowmodels/solutions/de.q60.mps.collections.libs/de.q60.mps.collections.libs.msd
index 199d9d698..9557f5589 100644
--- a/code/shadowmodels/solutions/de.q60.mps.collections.libs/de.q60.mps.collections.libs.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.collections.libs/de.q60.mps.collections.libs.msd
@@ -10,7 +10,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.genplan.virutalinterfaces_incremental/de.q60.mps.genplan.virutalinterfaces_incremental.msd b/code/shadowmodels/solutions/de.q60.mps.genplan.virutalinterfaces_incremental/de.q60.mps.genplan.virutalinterfaces_incremental.msd
index c13e518e0..56d25a69c 100644
--- a/code/shadowmodels/solutions/de.q60.mps.genplan.virutalinterfaces_incremental/de.q60.mps.genplan.virutalinterfaces_incremental.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.genplan.virutalinterfaces_incremental/de.q60.mps.genplan.virutalinterfaces_incremental.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/de.q60.mps.incremental.runtime.msd b/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/de.q60.mps.incremental.runtime.msd
index 4538888cf..01d2a275c 100644
--- a/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/de.q60.mps.incremental.runtime.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/de.q60.mps.incremental.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/models/de.q60.mps.incremental.runtime.mps b/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/models/de.q60.mps.incremental.runtime.mps
index 1bf5b30f6..83c1ec149 100644
--- a/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/models/de.q60.mps.incremental.runtime.mps
+++ b/code/shadowmodels/solutions/de.q60.mps.incremental.runtime/models/de.q60.mps.incremental.runtime.mps
@@ -18,9 +18,9 @@
-
-
-
+
+
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.incremental.sandbox/de.q60.mps.incremental.sandbox.msd b/code/shadowmodels/solutions/de.q60.mps.incremental.sandbox/de.q60.mps.incremental.sandbox.msd
index b4da4df2b..00b1b0807 100644
--- a/code/shadowmodels/solutions/de.q60.mps.incremental.sandbox/de.q60.mps.incremental.sandbox.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.incremental.sandbox/de.q60.mps.incremental.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.logging.runtime/de.q60.mps.logging.runtime.msd b/code/shadowmodels/solutions/de.q60.mps.logging.runtime/de.q60.mps.logging.runtime.msd
index c9b8ce585..07d64ed46 100644
--- a/code/shadowmodels/solutions/de.q60.mps.logging.runtime/de.q60.mps.logging.runtime.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.logging.runtime/de.q60.mps.logging.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/de.q60.mps.polymorphicfunctions.runtime.msd b/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/de.q60.mps.polymorphicfunctions.runtime.msd
index 62e88034b..f55c61827 100644
--- a/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/de.q60.mps.polymorphicfunctions.runtime.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/de.q60.mps.polymorphicfunctions.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/models/plugin.mps b/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/models/plugin.mps
index f860e0695..bfa244545 100644
--- a/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/models/plugin.mps
+++ b/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.runtime/models/plugin.mps
@@ -10,6 +10,11 @@
+
+
+
+
+
@@ -20,6 +25,7 @@
+
@@ -69,6 +75,9 @@
+
+
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.sandbox/de.q60.mps.polymorphicfunctions.sandbox.msd b/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.sandbox/de.q60.mps.polymorphicfunctions.sandbox.msd
index 69cab7dca..0c7cab44d 100644
--- a/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.sandbox/de.q60.mps.polymorphicfunctions.sandbox.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.polymorphicfunctions.sandbox/de.q60.mps.polymorphicfunctions.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.debugview/de.q60.mps.shadowmodels.debugview.msd b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.debugview/de.q60.mps.shadowmodels.debugview.msd
index 91c5c6156..e28417765 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.debugview/de.q60.mps.shadowmodels.debugview.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.debugview/de.q60.mps.shadowmodels.debugview.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.input/de.q60.mps.shadowmodels.examples.input.msd b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.input/de.q60.mps.shadowmodels.examples.input.msd
index 76cc286c8..39da191f6 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.input/de.q60.mps.shadowmodels.examples.input.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.input/de.q60.mps.shadowmodels.examples.input.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.javainterpreter/de.q60.mps.shadowmodels.examples.javainterpreter.msd b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.javainterpreter/de.q60.mps.shadowmodels.examples.javainterpreter.msd
index 3dbca39ef..1593826bf 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.javainterpreter/de.q60.mps.shadowmodels.examples.javainterpreter.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.javainterpreter/de.q60.mps.shadowmodels.examples.javainterpreter.msd
@@ -6,7 +6,7 @@
-
+
@@ -61,7 +61,6 @@
-
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.output/de.q60.mps.shadowmodels.examples.output.msd b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.output/de.q60.mps.shadowmodels.examples.output.msd
index 0e30c8d5c..a629666b4 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.output/de.q60.mps.shadowmodels.examples.output.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.examples.output/de.q60.mps.shadowmodels.examples.output.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.genplan/de.q60.mps.shadowmodels.genplan.msd b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.genplan/de.q60.mps.shadowmodels.genplan.msd
index 461a64bac..fd4ec2c14 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.genplan/de.q60.mps.shadowmodels.genplan.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.genplan/de.q60.mps.shadowmodels.genplan.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.modelcheck.runtime/de.q60.mps.shadowmodels.modelcheck.runtime.msd b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.modelcheck.runtime/de.q60.mps.shadowmodels.modelcheck.runtime.msd
index d59fe1aa4..9aa164392 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.modelcheck.runtime/de.q60.mps.shadowmodels.modelcheck.runtime.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.modelcheck.runtime/de.q60.mps.shadowmodels.modelcheck.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/de.q60.mps.shadowmodels.runtime.msd b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/de.q60.mps.shadowmodels.runtime.msd
index 677254272..9eae697a8 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/de.q60.mps.shadowmodels.runtime.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/de.q60.mps.shadowmodels.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/plugin.mps b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/plugin.mps
index 9d2e752f6..4f72b7901 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/plugin.mps
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/plugin.mps
@@ -2123,7 +2123,7 @@
-
+
@@ -2370,7 +2370,7 @@
-
+
@@ -2448,7 +2448,7 @@
-
+
@@ -2559,7 +2559,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/smodel.mps b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/smodel.mps
index 33dc03824..01b923597 100644
--- a/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/smodel.mps
+++ b/code/shadowmodels/solutions/de.q60.mps.shadowmodels.runtime/models/smodel.mps
@@ -62,6 +62,7 @@
+
@@ -18143,13 +18144,26 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.genplan/de.q60.mps.virtualinterfaces.genplan.msd b/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.genplan/de.q60.mps.virtualinterfaces.genplan.msd
index f977983d4..fec7faa43 100644
--- a/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.genplan/de.q60.mps.virtualinterfaces.genplan.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.genplan/de.q60.mps.virtualinterfaces.genplan.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.sandbox/de.q60.mps.virtualinterfaces.sandbox.msd b/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.sandbox/de.q60.mps.virtualinterfaces.sandbox.msd
index 06727c2e6..20f3c0225 100644
--- a/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.sandbox/de.q60.mps.virtualinterfaces.sandbox.msd
+++ b/code/shadowmodels/solutions/de.q60.mps.virtualinterfaces.sandbox/de.q60.mps.virtualinterfaces.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/test.de.q60.mps.incremental.runtime/test.de.q60.mps.incremental.runtime.msd b/code/shadowmodels/solutions/test.de.q60.mps.incremental.runtime/test.de.q60.mps.incremental.runtime.msd
index 9eec939d7..698aaf43a 100644
--- a/code/shadowmodels/solutions/test.de.q60.mps.incremental.runtime/test.de.q60.mps.incremental.runtime.msd
+++ b/code/shadowmodels/solutions/test.de.q60.mps.incremental.runtime/test.de.q60.mps.incremental.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.examples/test.de.q60.mps.shadowmodels.examples.msd b/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.examples/test.de.q60.mps.shadowmodels.examples.msd
index 6f8ab204d..a6f6137ce 100644
--- a/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.examples/test.de.q60.mps.shadowmodels.examples.msd
+++ b/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.examples/test.de.q60.mps.shadowmodels.examples.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.runtime/test.de.q60.mps.shadowmodels.runtime.msd b/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.runtime/test.de.q60.mps.shadowmodels.runtime.msd
index d656c71cf..ddc43a388 100644
--- a/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.runtime/test.de.q60.mps.shadowmodels.runtime.msd
+++ b/code/shadowmodels/solutions/test.de.q60.mps.shadowmodels.runtime/test.de.q60.mps.shadowmodels.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/solutions/com.mbeddr.mpsutil.intentions.sandbox/com.mbeddr.mpsutil.intentions.sandbox.msd b/code/solutions/com.mbeddr.mpsutil.intentions.sandbox/com.mbeddr.mpsutil.intentions.sandbox.msd
index 347ca4775..fb2863950 100644
--- a/code/solutions/com.mbeddr.mpsutil.intentions.sandbox/com.mbeddr.mpsutil.intentions.sandbox.msd
+++ b/code/solutions/com.mbeddr.mpsutil.intentions.sandbox/com.mbeddr.mpsutil.intentions.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/solutions/de.itemis.model.merge.runtime/de.itemis.model.merge.runtime.msd b/code/solutions/de.itemis.model.merge.runtime/de.itemis.model.merge.runtime.msd
index 5ade07e46..2f3f308d2 100644
--- a/code/solutions/de.itemis.model.merge.runtime/de.itemis.model.merge.runtime.msd
+++ b/code/solutions/de.itemis.model.merge.runtime/de.itemis.model.merge.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/solutions/de.itemis.model.merge.runtime/models/de.itemis.model.merge.runtime.runtime.mps b/code/solutions/de.itemis.model.merge.runtime/models/de.itemis.model.merge.runtime.runtime.mps
index e67175b95..5d33dc481 100644
--- a/code/solutions/de.itemis.model.merge.runtime/models/de.itemis.model.merge.runtime.runtime.mps
+++ b/code/solutions/de.itemis.model.merge.runtime/models/de.itemis.model.merge.runtime.runtime.mps
@@ -20,14 +20,14 @@
-
+
-
+
diff --git a/code/solutions/de.itemis.model.merge.simple.demo/de.itemis.model.merge.simple.demo.msd b/code/solutions/de.itemis.model.merge.simple.demo/de.itemis.model.merge.simple.demo.msd
index cf16cc0d2..25c7bc58e 100644
--- a/code/solutions/de.itemis.model.merge.simple.demo/de.itemis.model.merge.simple.demo.msd
+++ b/code/solutions/de.itemis.model.merge.simple.demo/de.itemis.model.merge.simple.demo.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/solutions/de.itemis.model.merge.simple.demo/models/de.itemis.model.merge.simple.demo.test@tests.mps b/code/solutions/de.itemis.model.merge.simple.demo/models/de.itemis.model.merge.simple.demo.test@tests.mps
index 98b6490b7..b364031b6 100644
--- a/code/solutions/de.itemis.model.merge.simple.demo/models/de.itemis.model.merge.simple.demo.test@tests.mps
+++ b/code/solutions/de.itemis.model.merge.simple.demo/models/de.itemis.model.merge.simple.demo.test@tests.mps
@@ -43,6 +43,7 @@
+
@@ -382,25 +383,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2115,25 +2098,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2308,25 +2273,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/code/solutions/de.itemis.model.merge.test.integration/de.itemis.model.merge.test.integration.msd b/code/solutions/de.itemis.model.merge.test.integration/de.itemis.model.merge.test.integration.msd
index 2471a381b..a4003bfd3 100644
--- a/code/solutions/de.itemis.model.merge.test.integration/de.itemis.model.merge.test.integration.msd
+++ b/code/solutions/de.itemis.model.merge.test.integration/de.itemis.model.merge.test.integration.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/solutions/de.itemis.model.merge.test.integration/models/de.itemis.model.merge.test.integration.tests@tests.mps b/code/solutions/de.itemis.model.merge.test.integration/models/de.itemis.model.merge.test.integration.tests@tests.mps
index 9febd23d8..15b6ecea5 100644
--- a/code/solutions/de.itemis.model.merge.test.integration/models/de.itemis.model.merge.test.integration.tests@tests.mps
+++ b/code/solutions/de.itemis.model.merge.test.integration/models/de.itemis.model.merge.test.integration.tests@tests.mps
@@ -32,6 +32,7 @@
+
@@ -261,25 +262,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -572,25 +555,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/code/solutions/de.itemis.model.merge.test/de.itemis.model.merge.test.msd b/code/solutions/de.itemis.model.merge.test/de.itemis.model.merge.test.msd
index fb676fab7..48086ce09 100644
--- a/code/solutions/de.itemis.model.merge.test/de.itemis.model.merge.test.msd
+++ b/code/solutions/de.itemis.model.merge.test/de.itemis.model.merge.test.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/solutions/de.itemis.mps.extensions.changelog/models/de.itemis.mps.extensions.changelog.mps b/code/solutions/de.itemis.mps.extensions.changelog/models/de.itemis.mps.extensions.changelog.mps
index c5da0b2ce..f213c350d 100644
--- a/code/solutions/de.itemis.mps.extensions.changelog/models/de.itemis.mps.extensions.changelog.mps
+++ b/code/solutions/de.itemis.mps.extensions.changelog/models/de.itemis.mps.extensions.changelog.mps
@@ -291,6 +291,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/code/statistics/de.itemis.mps.statistics.mpl b/code/statistics/de.itemis.mps.statistics.mpl
index 8244f1d93..e97474cfe 100644
--- a/code/statistics/de.itemis.mps.statistics.mpl
+++ b/code/statistics/de.itemis.mps.statistics.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/code/structurecheck/languages/de.itemis.mps.structurecheck/de.itemis.mps.structurecheck.mpl b/code/structurecheck/languages/de.itemis.mps.structurecheck/de.itemis.mps.structurecheck.mpl
index c9188a5d1..2adfa8166 100644
--- a/code/structurecheck/languages/de.itemis.mps.structurecheck/de.itemis.mps.structurecheck.mpl
+++ b/code/structurecheck/languages/de.itemis.mps.structurecheck/de.itemis.mps.structurecheck.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -30,6 +30,7 @@
+
@@ -40,7 +41,6 @@
-
@@ -50,21 +50,15 @@
-
-
-
-
-
-
diff --git a/code/structurecheck/solutions/de.itemis.mps.structurecheck.runtime/de.itemis.mps.structurecheck.runtime.msd b/code/structurecheck/solutions/de.itemis.mps.structurecheck.runtime/de.itemis.mps.structurecheck.runtime.msd
index 04ef9fa43..efa1b1a27 100644
--- a/code/structurecheck/solutions/de.itemis.mps.structurecheck.runtime/de.itemis.mps.structurecheck.runtime.msd
+++ b/code/structurecheck/solutions/de.itemis.mps.structurecheck.runtime/de.itemis.mps.structurecheck.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/structurecheck/solutions/de.itemis.mps.structurecheck.sandbox/de.itemis.mps.structurecheck.sandbox.msd b/code/structurecheck/solutions/de.itemis.mps.structurecheck.sandbox/de.itemis.mps.structurecheck.sandbox.msd
index ca7a6b68d..7c8fba2b5 100644
--- a/code/structurecheck/solutions/de.itemis.mps.structurecheck.sandbox/de.itemis.mps.structurecheck.sandbox.msd
+++ b/code/structurecheck/solutions/de.itemis.mps.structurecheck.sandbox/de.itemis.mps.structurecheck.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/tables/languages/de.slisson.mps.tables.demolang/de.slisson.mps.tables.demolang.mpl b/code/tables/languages/de.slisson.mps.tables.demolang/de.slisson.mps.tables.demolang.mpl
index 42e03ffff..9e9475db1 100644
--- a/code/tables/languages/de.slisson.mps.tables.demolang/de.slisson.mps.tables.demolang.mpl
+++ b/code/tables/languages/de.slisson.mps.tables.demolang/de.slisson.mps.tables.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/tables/languages/de.slisson.mps.tables/de.slisson.mps.tables.mpl b/code/tables/languages/de.slisson.mps.tables/de.slisson.mps.tables.mpl
index 7cc176833..d0d58de8f 100644
--- a/code/tables/languages/de.slisson.mps.tables/de.slisson.mps.tables.mpl
+++ b/code/tables/languages/de.slisson.mps.tables/de.slisson.mps.tables.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -64,8 +64,6 @@
-
-
@@ -77,7 +75,6 @@
-
@@ -85,7 +82,6 @@
-
@@ -97,7 +93,6 @@
-
diff --git a/code/tables/languages/de.slisson.mps.tables/runtime/de.slisson.mps.tables.runtime.msd b/code/tables/languages/de.slisson.mps.tables/runtime/de.slisson.mps.tables.runtime.msd
index 07499e1ad..e3b09f625 100644
--- a/code/tables/languages/de.slisson.mps.tables/runtime/de.slisson.mps.tables.runtime.msd
+++ b/code/tables/languages/de.slisson.mps.tables/runtime/de.slisson.mps.tables.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/tables/languages/de.slisson.mps.tables/runtime/models/de/slisson/mps/tables/runtime/cells.mps b/code/tables/languages/de.slisson.mps.tables/runtime/models/de/slisson/mps/tables/runtime/cells.mps
index c1ec04742..c33c7ca1b 100644
--- a/code/tables/languages/de.slisson.mps.tables/runtime/models/de/slisson/mps/tables/runtime/cells.mps
+++ b/code/tables/languages/de.slisson.mps.tables/runtime/models/de/slisson/mps/tables/runtime/cells.mps
@@ -1,6 +1,7 @@
+
@@ -61,8 +62,8 @@
-
+
@@ -12357,8 +12358,8 @@
-
+
@@ -15084,13 +15085,13 @@
+
+
+
-
-
-
diff --git a/code/tables/languages/de.slisson.mps.tables/sandbox/de.slisson.mps.tables.sandbox.msd b/code/tables/languages/de.slisson.mps.tables/sandbox/de.slisson.mps.tables.sandbox.msd
index 58121b2ec..b8897f758 100644
--- a/code/tables/languages/de.slisson.mps.tables/sandbox/de.slisson.mps.tables.sandbox.msd
+++ b/code/tables/languages/de.slisson.mps.tables/sandbox/de.slisson.mps.tables.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/tables/solutions/de.slisson.mps.testutils/de.slisson.mps.testutils.msd b/code/tables/solutions/de.slisson.mps.testutils/de.slisson.mps.testutils.msd
index 6035953f1..747595d28 100644
--- a/code/tables/solutions/de.slisson.mps.testutils/de.slisson.mps.testutils.msd
+++ b/code/tables/solutions/de.slisson.mps.testutils/de.slisson.mps.testutils.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/tables/solutions/test.de.slisson.mps.tables/test.de.slisson.mps.tables.msd b/code/tables/solutions/test.de.slisson.mps.tables/test.de.slisson.mps.tables.msd
index b18c28cad..10e24d153 100644
--- a/code/tables/solutions/test.de.slisson.mps.tables/test.de.slisson.mps.tables.msd
+++ b/code/tables/solutions/test.de.slisson.mps.tables/test.de.slisson.mps.tables.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/third-party/solutions/MPS.ThirdParty/MPS.ThirdParty.msd b/code/third-party/solutions/MPS.ThirdParty/MPS.ThirdParty.msd
index 4683eb527..d916fc109 100644
--- a/code/third-party/solutions/MPS.ThirdParty/MPS.ThirdParty.msd
+++ b/code/third-party/solutions/MPS.ThirdParty/MPS.ThirdParty.msd
@@ -6,10 +6,9 @@
-
+
-
diff --git a/code/third-party/solutions/third.party.usage.test/third.party.usage.test.msd b/code/third-party/solutions/third.party.usage.test/third.party.usage.test.msd
index 3c04071bd..ce23a897c 100644
--- a/code/third-party/solutions/third.party.usage.test/third.party.usage.test.msd
+++ b/code/third-party/solutions/third.party.usage.test/third.party.usage.test.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/tooltips/solutions/de.itemis.mps.tooltips.runtime/de.itemis.mps.tooltips.runtime.msd b/code/tooltips/solutions/de.itemis.mps.tooltips.runtime/de.itemis.mps.tooltips.runtime.msd
index ea344f426..749954105 100644
--- a/code/tooltips/solutions/de.itemis.mps.tooltips.runtime/de.itemis.mps.tooltips.runtime.msd
+++ b/code/tooltips/solutions/de.itemis.mps.tooltips.runtime/de.itemis.mps.tooltips.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/treenotation/com.mbeddr.mpsutil.treenotation.runtime/com.mbeddr.mpsutil.treenotation.runtime.msd b/code/treenotation/com.mbeddr.mpsutil.treenotation.runtime/com.mbeddr.mpsutil.treenotation.runtime.msd
index 32157fe62..97b8384d9 100644
--- a/code/treenotation/com.mbeddr.mpsutil.treenotation.runtime/com.mbeddr.mpsutil.treenotation.runtime.msd
+++ b/code/treenotation/com.mbeddr.mpsutil.treenotation.runtime/com.mbeddr.mpsutil.treenotation.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/treenotation/com.mbeddr.mpsutil.treenotation.sandbox/com.mbeddr.mpsutil.treenotation.sandbox.msd b/code/treenotation/com.mbeddr.mpsutil.treenotation.sandbox/com.mbeddr.mpsutil.treenotation.sandbox.msd
index 4b226be23..fb549c34c 100644
--- a/code/treenotation/com.mbeddr.mpsutil.treenotation.sandbox/com.mbeddr.mpsutil.treenotation.sandbox.msd
+++ b/code/treenotation/com.mbeddr.mpsutil.treenotation.sandbox/com.mbeddr.mpsutil.treenotation.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/treenotation/com.mbeddr.mpsutil.treenotation.sandboxlang/com.mbeddr.mpsutil.treenotation.sandboxlang.mpl b/code/treenotation/com.mbeddr.mpsutil.treenotation.sandboxlang/com.mbeddr.mpsutil.treenotation.sandboxlang.mpl
index f623f6d44..7640f57ff 100644
--- a/code/treenotation/com.mbeddr.mpsutil.treenotation.sandboxlang/com.mbeddr.mpsutil.treenotation.sandboxlang.mpl
+++ b/code/treenotation/com.mbeddr.mpsutil.treenotation.sandboxlang/com.mbeddr.mpsutil.treenotation.sandboxlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/treenotation/com.mbeddr.mpsutil.treenotation.styles/com.mbeddr.mpsutil.treenotation.styles.mpl b/code/treenotation/com.mbeddr.mpsutil.treenotation.styles/com.mbeddr.mpsutil.treenotation.styles.mpl
index 446c62fdd..a68a2229c 100644
--- a/code/treenotation/com.mbeddr.mpsutil.treenotation.styles/com.mbeddr.mpsutil.treenotation.styles.mpl
+++ b/code/treenotation/com.mbeddr.mpsutil.treenotation.styles/com.mbeddr.mpsutil.treenotation.styles.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/treenotation/com.mbeddr.mpsutil.treenotation/com.mbeddr.mpsutil.treenotation.mpl b/code/treenotation/com.mbeddr.mpsutil.treenotation/com.mbeddr.mpsutil.treenotation.mpl
index 049267f00..34e40ba89 100644
--- a/code/treenotation/com.mbeddr.mpsutil.treenotation/com.mbeddr.mpsutil.treenotation.mpl
+++ b/code/treenotation/com.mbeddr.mpsutil.treenotation/com.mbeddr.mpsutil.treenotation.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -68,8 +68,6 @@
-
-
@@ -78,13 +76,11 @@
-
-
diff --git a/code/utils/solutions/de.itemis.mps.noderversioning.sandbox/de.itemis.mps.noderversioning.sandbox.msd b/code/utils/solutions/de.itemis.mps.noderversioning.sandbox/de.itemis.mps.noderversioning.sandbox.msd
index 08c8977cc..adfe5c00d 100644
--- a/code/utils/solutions/de.itemis.mps.noderversioning.sandbox/de.itemis.mps.noderversioning.sandbox.msd
+++ b/code/utils/solutions/de.itemis.mps.noderversioning.sandbox/de.itemis.mps.noderversioning.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/utils/solutions/de.itemis.mps.utils.serializer.xml/de.itemis.mps.utils.serializer.xml.msd b/code/utils/solutions/de.itemis.mps.utils.serializer.xml/de.itemis.mps.utils.serializer.xml.msd
index 17ca7ce88..8bc8fb1e2 100644
--- a/code/utils/solutions/de.itemis.mps.utils.serializer.xml/de.itemis.mps.utils.serializer.xml.msd
+++ b/code/utils/solutions/de.itemis.mps.utils.serializer.xml/de.itemis.mps.utils.serializer.xml.msd
@@ -12,7 +12,7 @@
-
+
diff --git a/code/widgets/languages/de.itemis.mps.editor.bool.demolang/de.itemis.mps.editor.bool.demolang.mpl b/code/widgets/languages/de.itemis.mps.editor.bool.demolang/de.itemis.mps.editor.bool.demolang.mpl
index 228749ce2..5d1ce837b 100644
--- a/code/widgets/languages/de.itemis.mps.editor.bool.demolang/de.itemis.mps.editor.bool.demolang.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.bool.demolang/de.itemis.mps.editor.bool.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/languages/de.itemis.mps.editor.bool/de.itemis.mps.editor.bool.mpl b/code/widgets/languages/de.itemis.mps.editor.bool/de.itemis.mps.editor.bool.mpl
index 3afed5d71..ec59596d0 100644
--- a/code/widgets/languages/de.itemis.mps.editor.bool/de.itemis.mps.editor.bool.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.bool/de.itemis.mps.editor.bool.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -58,8 +58,6 @@
-
-
@@ -67,12 +65,10 @@
-
-
@@ -82,7 +78,6 @@
-
diff --git a/code/widgets/languages/de.itemis.mps.editor.collapsible.testlang/de.itemis.mps.editor.collapsible.testlang.mpl b/code/widgets/languages/de.itemis.mps.editor.collapsible.testlang/de.itemis.mps.editor.collapsible.testlang.mpl
index 1921cad4c..d2565bbb8 100644
--- a/code/widgets/languages/de.itemis.mps.editor.collapsible.testlang/de.itemis.mps.editor.collapsible.testlang.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.collapsible.testlang/de.itemis.mps.editor.collapsible.testlang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/languages/de.itemis.mps.editor.collapsible/de.itemis.mps.editor.collapsible.mpl b/code/widgets/languages/de.itemis.mps.editor.collapsible/de.itemis.mps.editor.collapsible.mpl
index 6b70b9942..537654d80 100644
--- a/code/widgets/languages/de.itemis.mps.editor.collapsible/de.itemis.mps.editor.collapsible.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.collapsible/de.itemis.mps.editor.collapsible.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -56,8 +56,6 @@
-
-
@@ -67,11 +65,9 @@
-
-
@@ -81,7 +77,6 @@
-
diff --git a/code/widgets/languages/de.itemis.mps.editor.dropdown.demolang/de.itemis.mps.editor.dropdown.demolang.mpl b/code/widgets/languages/de.itemis.mps.editor.dropdown.demolang/de.itemis.mps.editor.dropdown.demolang.mpl
index 692e833c3..c14855bef 100644
--- a/code/widgets/languages/de.itemis.mps.editor.dropdown.demolang/de.itemis.mps.editor.dropdown.demolang.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.dropdown.demolang/de.itemis.mps.editor.dropdown.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/languages/de.itemis.mps.editor.dropdown/de.itemis.mps.editor.dropdown.mpl b/code/widgets/languages/de.itemis.mps.editor.dropdown/de.itemis.mps.editor.dropdown.mpl
index 9b730d82a..56183f37a 100644
--- a/code/widgets/languages/de.itemis.mps.editor.dropdown/de.itemis.mps.editor.dropdown.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.dropdown/de.itemis.mps.editor.dropdown.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -55,8 +55,6 @@
-
-
@@ -65,11 +63,9 @@
-
-
@@ -79,7 +75,6 @@
-
diff --git a/code/widgets/languages/de.itemis.mps.editor.enumeration.demolang/de.itemis.mps.editor.enumeration.demolang.mpl b/code/widgets/languages/de.itemis.mps.editor.enumeration.demolang/de.itemis.mps.editor.enumeration.demolang.mpl
index f4cb994d5..f0fbc1cf5 100644
--- a/code/widgets/languages/de.itemis.mps.editor.enumeration.demolang/de.itemis.mps.editor.enumeration.demolang.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.enumeration.demolang/de.itemis.mps.editor.enumeration.demolang.mpl
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/languages/de.itemis.mps.editor.enumeration/de.itemis.mps.editor.enumeration.mpl b/code/widgets/languages/de.itemis.mps.editor.enumeration/de.itemis.mps.editor.enumeration.mpl
index c5c9ab583..16f0449cf 100644
--- a/code/widgets/languages/de.itemis.mps.editor.enumeration/de.itemis.mps.editor.enumeration.mpl
+++ b/code/widgets/languages/de.itemis.mps.editor.enumeration/de.itemis.mps.editor.enumeration.mpl
@@ -6,7 +6,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -59,8 +59,6 @@
-
-
@@ -68,12 +66,10 @@
-
-
@@ -83,7 +79,6 @@
-
diff --git a/code/widgets/languages/de.itemis.mps.editor.enumeration/runtime/de.itemis.mps.editor.enumeration.runtime.msd b/code/widgets/languages/de.itemis.mps.editor.enumeration/runtime/de.itemis.mps.editor.enumeration.runtime.msd
index 9da2dd5d0..3f18c2a51 100644
--- a/code/widgets/languages/de.itemis.mps.editor.enumeration/runtime/de.itemis.mps.editor.enumeration.runtime.msd
+++ b/code/widgets/languages/de.itemis.mps.editor.enumeration/runtime/de.itemis.mps.editor.enumeration.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/languages/de.itemis.mps.editor.enumeration/sandbox/de.itemis.mps.editor.enumeration.sandbox.msd b/code/widgets/languages/de.itemis.mps.editor.enumeration/sandbox/de.itemis.mps.editor.enumeration.sandbox.msd
index 01c59fb0a..aef2d6a50 100644
--- a/code/widgets/languages/de.itemis.mps.editor.enumeration/sandbox/de.itemis.mps.editor.enumeration.sandbox.msd
+++ b/code/widgets/languages/de.itemis.mps.editor.enumeration/sandbox/de.itemis.mps.editor.enumeration.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/solutions/de.itemis.mps.editor.bool.runtime/de.itemis.mps.editor.bool.runtime.msd b/code/widgets/solutions/de.itemis.mps.editor.bool.runtime/de.itemis.mps.editor.bool.runtime.msd
index 2c5482953..e9fd13326 100644
--- a/code/widgets/solutions/de.itemis.mps.editor.bool.runtime/de.itemis.mps.editor.bool.runtime.msd
+++ b/code/widgets/solutions/de.itemis.mps.editor.bool.runtime/de.itemis.mps.editor.bool.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/solutions/de.itemis.mps.editor.bool.sandbox/de.itemis.mps.editor.bool.sandbox.msd b/code/widgets/solutions/de.itemis.mps.editor.bool.sandbox/de.itemis.mps.editor.bool.sandbox.msd
index ed6b94945..c53e5c1d0 100644
--- a/code/widgets/solutions/de.itemis.mps.editor.bool.sandbox/de.itemis.mps.editor.bool.sandbox.msd
+++ b/code/widgets/solutions/de.itemis.mps.editor.bool.sandbox/de.itemis.mps.editor.bool.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/solutions/de.itemis.mps.editor.collapsible.runtime/de.itemis.mps.editor.collapsible.runtime.msd b/code/widgets/solutions/de.itemis.mps.editor.collapsible.runtime/de.itemis.mps.editor.collapsible.runtime.msd
index dac037202..6ea996a52 100644
--- a/code/widgets/solutions/de.itemis.mps.editor.collapsible.runtime/de.itemis.mps.editor.collapsible.runtime.msd
+++ b/code/widgets/solutions/de.itemis.mps.editor.collapsible.runtime/de.itemis.mps.editor.collapsible.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/solutions/de.itemis.mps.editor.dropdown.runtime/de.itemis.mps.editor.dropdown.runtime.msd b/code/widgets/solutions/de.itemis.mps.editor.dropdown.runtime/de.itemis.mps.editor.dropdown.runtime.msd
index 6d799979d..15c391119 100644
--- a/code/widgets/solutions/de.itemis.mps.editor.dropdown.runtime/de.itemis.mps.editor.dropdown.runtime.msd
+++ b/code/widgets/solutions/de.itemis.mps.editor.dropdown.runtime/de.itemis.mps.editor.dropdown.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/solutions/de.itemis.mps.editor.dropdown.sandbox/de.itemis.mps.editor.dropdown.sandbox.msd b/code/widgets/solutions/de.itemis.mps.editor.dropdown.sandbox/de.itemis.mps.editor.dropdown.sandbox.msd
index 3ccea9ac6..5e1944e9c 100644
--- a/code/widgets/solutions/de.itemis.mps.editor.dropdown.sandbox/de.itemis.mps.editor.dropdown.sandbox.msd
+++ b/code/widgets/solutions/de.itemis.mps.editor.dropdown.sandbox/de.itemis.mps.editor.dropdown.sandbox.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/code/widgets/solutions/de.itemis.mps.mouselistener.runtime/de.itemis.mps.mouselistener.runtime.msd b/code/widgets/solutions/de.itemis.mps.mouselistener.runtime/de.itemis.mps.mouselistener.runtime.msd
index 0b44da3e0..dc5f7aaa4 100644
--- a/code/widgets/solutions/de.itemis.mps.mouselistener.runtime/de.itemis.mps.mouselistener.runtime.msd
+++ b/code/widgets/solutions/de.itemis.mps.mouselistener.runtime/de.itemis.mps.mouselistener.runtime.msd
@@ -6,7 +6,7 @@
-
+
diff --git a/scripts/build.xml b/scripts/build.xml
index 768c938dc..249ae8e59 100644
--- a/scripts/build.xml
+++ b/scripts/build.xml
@@ -31,7 +31,6 @@
-
@@ -119,7 +118,6 @@
-
@@ -204,6 +202,7 @@
+