You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.adoc
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,8 @@
20
20
- https://github.com/eclipse-syson/syson/issues/1222[#1222] [general-view] Add `ItemUsage` as _bordered nodes_ of `ActionUsage` and `ActionDefinition` in the _General View_ diagram.
21
21
- https://github.com/eclipse-syson/syson/issues/1226[#1226] [general-view] Add the possibility to create `FlowConnectionUsage` as graphical edges from `ItemUsage` _bordered nodes_ on _General View_ diagram.
22
22
- https://github.com/eclipse-syson/syson/issues/1249[#1249] [import][export] Implement textual import/export of `AcceptActionUsage`.
23
+
- https://github.com/eclipse-syson/syson/issues/1247[#1247] [explorer] Type new `ViewUsage` from _Explorer_ view with _General View_ `ViewDefinition`.
24
+
When end-users click on _New Object_ on a semantic element, and select a `ViewUsage`, then a `ViewUsage` typed by default with the _General View_ `ViewDefinition` from the standard library will be created.
Copy file name to clipboardExpand all lines: backend/application/syson-application-configuration/src/main/java/org/eclipse/syson/application/services/GetChildCreationSwitch.java
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@
37
37
importorg.eclipse.syson.sysml.RequirementUsage;
38
38
importorg.eclipse.syson.sysml.SysmlPackage;
39
39
importorg.eclipse.syson.sysml.Usage;
40
+
importorg.eclipse.syson.sysml.ViewUsage;
40
41
importorg.eclipse.syson.util.SysmlEClassSwitch;
41
42
42
43
/**
@@ -253,6 +254,16 @@ public List<EClass> caseUsage(Usage object) {
Copy file name to clipboardExpand all lines: backend/application/syson-application-configuration/src/main/java/org/eclipse/syson/application/services/GetIntermediateContainerCreationSwitch.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -64,11 +64,6 @@ public Optional<EClass> caseDocumentation(Documentation object) {
Copy file name to clipboardExpand all lines: backend/application/syson-application-configuration/src/test/java/org/eclipse/syson/application/services/GetChildCreationSwitchTest.java
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,4 +66,15 @@ public void testNamespaceChildren() {
Copy file name to clipboardExpand all lines: backend/services/syson-services/src/test/java/org/eclipse/syson/services/ElementInitializerSwitchTest.java
+56-34Lines changed: 56 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,9 @@
27
27
importorg.eclipse.syson.sysml.Relationship;
28
28
importorg.eclipse.syson.sysml.SysmlFactory;
29
29
importorg.eclipse.syson.sysml.SysmlPackage;
30
+
importorg.eclipse.syson.sysml.ViewDefinition;
31
+
importorg.eclipse.syson.sysml.ViewUsage;
32
+
importorg.eclipse.syson.sysml.util.ElementUtil;
30
33
importorg.junit.jupiter.api.BeforeEach;
31
34
importorg.junit.jupiter.api.DisplayName;
32
35
importorg.junit.jupiter.api.Test;
@@ -46,6 +49,8 @@ public class ElementInitializerSwitchTest {
Copy file name to clipboardExpand all lines: doc/content/modules/user-manual/pages/release-notes/2025.6.0.adoc
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,9 @@ action a1 {
97
97
}
98
98
```
99
99
100
+
- Type new `ViewUsage` from _Explorer_ view with _General View_ `ViewDefinition`.
101
+
When end-users click on _New Object_ on a semantic element, and select a `ViewUsage`, then a `ViewUsage` typed by default with the _General View_ `ViewDefinition` from the standard library will be created.
0 commit comments