mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
18 lines
373 B
Plaintext
18 lines
373 B
Plaintext
@startuml
|
|
|
|
rectangle "DataNode<ProjectData>" as root
|
|
rectangle "DataNode<ModuleData>" as child1
|
|
rectangle "DataNode<LibraryData>\n(JUnit)" as child2
|
|
rectangle "DataNode<ContentRootData>" as child11
|
|
rectangle "DataNode<LibraryDependencyData>\n(JUnit)" as child12
|
|
|
|
|
|
' Define the class relationships
|
|
root -- child1
|
|
root -- child2
|
|
|
|
child1 -- child11
|
|
child1 -- child12
|
|
|
|
@enduml
|