How do I split an activity flow without using the fork command using the new syntax?

0 votes
asked Feb 27, 2013 in Closed question / help by anonymous
With the current activity diagrams, I can do this:

A -> B

B -> C

B -> D

This will shoot 2 arrows out of B, 1 to C and 1 to D.

Is this doable with the new syntax?

1 Answer

+1 vote
answered Feb 28, 2013 by plantuml (294,960 points)

What could be implemented easily is the following drawing :

The drawing is not exactly what you have asked for, but would this be ok for you ?

Thanks,

 

commented Mar 1, 2013 by anonymous
I'll try that out, thanks. What's the syntax?
commented Mar 3, 2013 by plantuml (294,960 points)
It's not possible with the official release.
You have to download this beta version :
https://dl.dropbox.com/u/13064071/plantuml.jar
And then try:

 @startuml
 start
 split
     :foo1;
 split again
     :foo2;
 endsplit
 @enduml
commented Sep 11, 2013 by Luc Trudeau (360 points)
Works great in the current version. You should add this to activity2.html page.
...