State Diagram - Decision and crossing

0 votes
asked Aug 3, 2015 in Wanted features by TJP (400 points)
Hi Plant-UML Team.

At the moment I want to specify a State Diagram and in this diagram are a lot of decisions.

So my question ist how can I visualise a decision in the State Diagram (which is part of the UML 2.0 specification)?

Thank you in advance!

Best regards,

Timo

1 Answer

0 votes
answered Aug 4, 2015 by plantuml (294,960 points)

Hi,

This is not very convenient, but you can have:

state State1 <<choice>>
[*] --> State1 : some test
State1 --> State2 : true
State1 --> State3 : false

...