Search

Search IconIcon to open search

PlantUML

Last updated Jan 5, 2024

使用简单的文字描述画UML图的开源工具。

# Class Diagram

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
@startuml
skinparam classAttributeIconSize 0
Class SubClass {
 -privateParam
 +publicParam
 #protectedParam
 ~defaultParam
}
SubClass --> Class1
@enduml

框架. 使用 +-#~ 而不是几何

1
2
3
@startuml
skinparam classAttributeIconSize 0
@enduml

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
@startuml
class A {
{static} int counter
+void {abstract} start(int timeout)
}
note left of A::counter
  该成员已注释
end note
note right of A::start
  在 UML 注释了此方法
end note
@enduml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
@startuml

class Dummy
Dummy --> Foo : A link
note on link #red: note that is red

Dummy --> Foo2 : Another link
note right on link #blue
this is my note on right link
and in blue
end note

@enduml