mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 01:37:51 +08:00
15 lines
253 B
Plaintext
15 lines
253 B
Plaintext
@startuml
|
|
hide empty members
|
|
hide circle
|
|
left to right direction
|
|
|
|
' Define the objects in the diagram
|
|
class "application bus" as AB
|
|
class "project bus" as PB
|
|
class "module bus" as MB
|
|
|
|
' Define the class relationships
|
|
AB o-- "*" PB
|
|
PB o-- "*" MB
|
|
@enduml
|