bloggerads

2021年2月24日 星期三

Plant UML Example


PlantText UML Editor: https://www.planttext.com/

Flow Chart
@startuml
(*) --> "A example of a step"
    if "Is This is a good example?" then
        --> [Yes] "Copy it"
        -->(*)
    else
        --> [No] "Drop it!"
        -->(*)
    endif
@enduml


@startuml
participant User
 
User -> A1
activate A

-> B2
activate B

-> C3
activate C

C --> B: end3
destroy C

B --> A: end2
deactivate B

-> User: end1
deactivate A
 
@enduml



@startuml
A : A's property
B : B's property
C : C's property
[*] --> A : start to A
[*] --> B : start to B
A --> B : A to B
B --> C : B to C
C --> B : C to B
C --> C : C to C
@enduml