2025-02-09から1日間の記事一覧

PlantUML アクティビティ図の新しい構文(記述方法)とレガシー構文

PlantUML アクティビティ図の新しい構文は、 Graphviz に依存しない。 メンテナンス性が良い? 新しい構文は、start, end , stop で開始、終端を記述する。 @startuml start title 新しい構文 end title :処理A; :処理B; if (条件1) then (Yes) :処理C; else…