0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Plant uml チートシート

Posted at
@startuml
' 取引種別
actor A
database B
participant C
participant D
' 当事者をグルーピング
box イレギュラー
participant E
participant F
end box

' 変数
!$a = A
!$b = B
!$c = C
!$d_json = {"d":"D","one":1,"f":"F","ab":"A,B"}

$a -> $c:変数
$a -> $d_json.d :辞書呼び出し
note right :辞書呼び出しone=**$d_json.one**
note over $d_json.d ,$d_json.f
d to f
end note

note over $d_json.ab
a to b
end note

' コメント
/'
コメント
改行あり
'/
' ボール持ってる人をactivateで表現
$a -> $b:通常
activate $a
$a --> $c:点線
note right
注釈大
改行可
end note
$a -[#green]> F:色変
note left :注釈
deactivate $a

alt 分岐
$a -> D :
else $d_json.d = D
D -> E
end

loop ルーティン
C -> F
end

group 処理をグルーピング
$a -> $b
$c -> $b
end 


note over $a
Aのみ
end note

note over $a,$c
A~C
end note

note across
全体
end note
note over $b
[[link]]
end note



@enduml
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?