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
[960] Display possible 'stakeholder' PartUsages in a tree
In the General View diagram, the creation tool for StakeholderParameter
now shows possible candidate PartUsages in a tree instead of a flat
list.
Bug: #960
Signed-off-by: Florent Latombe <florent.latombe@obeo.fr>
Copy file name to clipboardExpand all lines: CHANGELOG.adoc
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ The changes are:
47
47
- https://github.com/eclipse-syson/syson/issues/946[#946] [libraries] All standard libraries have been updated to comply with the SysML Beta 2.3 specification.
48
48
- https://github.com/eclipse-syson/syson/issues/982[#982] [metamodel] `Membership#isDistinguishableFrom` derived attribute has been implemented.
49
49
- https://github.com/eclipse-syson/syson/issues/992[#992] [export] Implement SysML export of `ConcernDefinition`, `ConcernUsage` and `StakeholderMembership`
50
+
- https://github.com/eclipse-syson/syson/issues/960[#960] [general-view] In the selection dialog of the creation tool for 'StakeholderParameter', display possible PartUsage candidates in a tree instead of a list.
Copy file name to clipboardExpand all lines: backend/views/syson-diagram-common-view/src/main/java/org/eclipse/syson/diagram/common/view/services/ViewToolService.java
+78-8Lines changed: 78 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,9 @@
14
14
15
15
importjava.text.MessageFormat;
16
16
importjava.util.ArrayList;
17
+
importjava.util.Comparator;
17
18
importjava.util.HashSet;
19
+
importjava.util.Iterator;
18
20
importjava.util.List;
19
21
importjava.util.Map;
20
22
importjava.util.Map.Entry;
@@ -23,8 +25,8 @@
23
25
importjava.util.Set;
24
26
importjava.util.stream.Stream;
25
27
26
-
importorg.eclipse.emf.common.util.TreeIterator;
27
28
importorg.eclipse.emf.ecore.EClass;
29
+
importorg.eclipse.emf.ecore.EClassifier;
28
30
importorg.eclipse.emf.ecore.EObject;
29
31
importorg.eclipse.emf.ecore.resource.Resource;
30
32
importorg.eclipse.emf.edit.domain.EditingDomain;
@@ -1129,11 +1131,11 @@ public List<Resource> getNamespaceImportSelectionDialogElements(IEditingContext
Copy file name to clipboardExpand all lines: backend/views/syson-diagram-common-view/src/main/java/org/eclipse/syson/diagram/common/view/tools/StakeholdersCompartmentNodeToolProvider.java
0 commit comments