mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
21 lines
379 B
Plaintext
21 lines
379 B
Plaintext
@startuml
|
|
skinparam classAttributeIconSize 0
|
|
hide empty fields
|
|
hide empty methods
|
|
left to right direction
|
|
|
|
' Define the objects in the diagram
|
|
class "com.intellij.util.messages.Topic" as Topic {
|
|
+displayName()
|
|
+broadcastDirection()
|
|
}
|
|
class ListenerClass {
|
|
+method1()
|
|
{method} ...
|
|
+methodN()
|
|
}
|
|
|
|
' Define the class relationships
|
|
Topic o--> "1 " ListenerClass
|
|
@enduml
|