it:ad:plantuml:howto:examples:activity_diagrams

IT:AD:PlantUML:HowTo:Examples:Activity Diagrams

Example #1

<uml>
[*] --> State1
State1 --> [*]
State1 : a str
State1 : another str
State1 -> State2
State2 --> [*]
</uml>

produces:

State1a stranother strState2

Example #2

<uml>
(*) -right-> "First Activity."
"First Activity." -down-> (*)
</uml>

produces:

First Activity.

Example #3

<uml>
start

if (graphviz installed?) then (yes)
  :process all
   diagrams;
else (no)
  :process only
  <u>sequence</u> and <u>activity</u> diagrams;
endif

stop
</uml>

produces:

graphviz installed?yesnoprocess alldiagramsprocess onlysequenceandactivitydiagrams

Example #4

<uml>
(*)  --> "check input"
If "input is verbose.." then
--> [Yes] "turn on verbosity"
--> "run command"
else
--> "run command"   
Endif
-->(*)


</uml>

check inputturn on verbosityrun commandinput is verbose..Yes

  • /home/skysigal/public_html/data/pages/it/ad/plantuml/howto/examples/activity_diagrams.txt
  • Last modified: 2023/11/04 02:26
  • by 127.0.0.1