Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mbe-tools
TTool
Commits
cb42bc94
Commit
cb42bc94
authored
Mar 21, 2019
by
apvrille
Browse files
Update on composite component selection
parent
3c3e1674
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
modeling/DIPLODOCUS/CloneCompositeComponentTest.xml
View file @
cb42bc94
This diff is collapsed.
Click to expand it.
src/main/java/ui/TDiagramPanel.java
View file @
cb42bc94
...
...
@@ -1387,7 +1387,14 @@ public abstract class TDiagramPanel extends JPanel implements GenericTree {
v
=
new
Vector
<
TMLCPrimitiveComponent
>();
v
.
addElement
((
TMLCPrimitiveComponent
)
tgc
);
}
if
(
tgc
instanceof
TMLCCompositeComponent
)
{
if
(
v
==
null
)
v
=
new
Vector
<
TMLCPrimitiveComponent
>();
v
.
addAll
(((
TMLCCompositeComponent
)
(
tgc
)).
getAllPrimitiveComponents
());
}
}
}
return
v
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment