Empty diamond representation in repeat-loop

+1 vote
asked Apr 28, 2015 in Wanted features by marob (160 points)

It would be nice to represent an empty repeat-diamond "repeat while ()" like the normal default diamond symbol (like the one after the start node). I only use a label on the arrow and in this case i need to add the brackets in the statement otherwise i would get a syntax error.

@startuml

start

repeat
  :read data;
  :generate diagrams;
repeat while () is (test)

stop

@enduml

Thank you!

1 Answer

+1 vote
answered May 6, 2015 by plantuml (294,960 points)
selected May 6, 2015 by marob
 
Best answer
Hi,

Thanks for the suggestion.

This has been implemented in the last beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

And this will be released in next official version.

Regards,
commented May 6, 2015 by marob (160 points)
Works fine now, thanks!
...