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
@@ -38,6 +38,8 @@ Disabling the _Hide expression internals_ filter in the _Explorer_ view allows t
38
38
- https://github.com/eclipse-syson/syson/issues/2231[#2231] [diagrams] Add a new tool to create a _frame_ `ConcernUsage` from `RequirementUsage` and `RequirementDefinition` graphical nodes.
39
39
- https://github.com/eclipse-syson/syson/issues/2231[#2231] [diagrams] Add the support for the _frames_ compartment graphical node in `RequirementUsage` and `RequirementDefinition` graphical nodes.
40
40
- https://github.com/eclipse-syson/syson/issues/2235[#2235] [diagrams] Leverage the selection dialog to improve the graphical node tool creating a _frame_ `ConcernUsage` from `RequirementUsage` and `RequirementDefinition` graphical nodes.
41
+
- https://github.com/eclipse-syson/syson/issues/2242[#2242] [explorer] Add two options to the dialog creating a child element of `RequirementUsage` or `RequirementDefinition` tree items.
42
+
One creates a `ConcernUsage` and another one creates `FramedConcernMembership`.
Copy file name to clipboardExpand all lines: backend/application/syson-application-configuration/src/main/java/org/eclipse/syson/application/services/GetChildCreationSwitch.java
Copy file name to clipboardExpand all lines: backend/application/syson-application-configuration/src/test/java/org/eclipse/syson/application/services/GetChildCreationSwitchTest.java
Copy file name to clipboardExpand all lines: backend/application/syson-application/src/test/java/org/eclipse/syson/application/controllers/explorer/view/ExplorerViewControllerIntegrationTests.java
Mono<IPayload> result = this.executeEditingContextFunctionRunner.execute(editingContextFunctionInput);
456
458
varpayload = result.block();
@@ -466,6 +468,55 @@ public void testCreateConstraintInRequirement() {
466
468
.verify(Duration.ofSeconds(10));
467
469
}
468
470
471
+
@DisplayName("GIVEN the Sirius Explorer View, WHEN creating a concern inside a requirement, THEN the new concern is owned through a FramedConcernMembership")
Copy file name to clipboardExpand all lines: backend/services/syson-services/src/main/java/org/eclipse/syson/util/GetIntermediateContainerCreationSwitch.java
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
importorg.eclipse.emf.ecore.EClass;
19
19
importorg.eclipse.emf.ecore.EObject;
20
20
importorg.eclipse.syson.sysml.Comment;
21
+
importorg.eclipse.syson.sysml.ConcernUsage;
21
22
importorg.eclipse.syson.sysml.ConstraintUsage;
22
23
importorg.eclipse.syson.sysml.Definition;
23
24
importorg.eclipse.syson.sysml.Documentation;
@@ -70,6 +71,19 @@ public Optional<EClass> caseConstraintUsage(ConstraintUsage object) {
0 commit comments