I am keen for an activity diagram to terminate several conditionals on the same command.
@startuml
start
if (condition a)
:condition a, b and c next step;
elseif (condition b)
:condition a, b and c next step;
elseif (condition c)
:condition a, b and c next step;
else
:no problem, do something else;
endif
stop
@enduml
In the example above I end up with 3 copies of the same command, where I just want a single bubble showing the command and 3 arrows pointing to it.
Is this possible? Will it be possible in the near future?