Hello PlantUML Team,
I would like to ask one more question. In a component diagram I want to compose some components to a "super"-component. I figured out this is possible with:
@startuml
skinparam componentstyle uml2
component SuperC {
component SubC1 {
component "Comp 1"
component "Comp 2"
}
component SubC2 {
component "Comp A"
component "Comp B"
}
}
@enduml
And further on I tried to have another component communicating with the SuperC via an interface ... what is not possible. It seems to me, that the SuperC is not used as a component but as a type of a package.
Is there a possibility to connect a SuperComponent to an interface?
Thanks in advance for your help.
Höri