I am trying to create an activity diagram with PlantUML that does contain arrows that go back to existing nodes.
What I am looking for is a diagram that includes the two arrows "Arrow 1" and "Arrow 2" in the picture below:
I have tried creating this using the PlantUML beta syntax for Activity diagrams.
I achieved the diagram below:
by writing the following PlantUML code:
@startuml
start
:new - please check;
while (check sucessful?) is (is an error)
:to solve;
:in progress;
:solved;
endwhile (not an error)
:erledigt;
note left
reason:
* done
* not an error
* not fixable
end note
stop
@enduml
Does anybody has a hint on how to achieve this? It does not matter to me if the result is achieved by using the beta syntax or the older syntax.