How can I generate a UML sequence diagram from a file containing a textual representation of my process, with command-line tools in Linux?
+2
A:
Not sure if it's what you want, but UMLGraph can generate sequence diagrams using graphviz and ghostscript...
jcayzac
2010-05-09 13:45:34
Ghostscript isn't needed. GraphViz can directly generate PNG, SVG, and many other file types.
Diomidis Spinellis
2010-07-08 14:09:17
@Diomidis: re-reading my comment, I realize I got several things mixed up:- GraphViz (alone) is used to generate class diagrams- the GNU plotutils (alone) are used to generate sequence diagrams.In some script I wrote a long time ago, I was using ghostscript to render the diagram at a high resolution. Then it was fed to ImageMagick to make the background transparent. See http://blog.julien.cayzac.name/2004/11/drawing-uml-sequence-diagrams-with-gnu.html
jcayzac
2010-08-04 01:46:44
A:
There are many (many=more than 10) tools for this. See a complete list: http://modeling-languages.com/content/uml-tools#textual
Jordi Cabot
2010-05-09 20:57:54
A:
You can contact Reverse Java Team. We gave our text representation to them and they created nice Sequence diagram from it. The sequence diagram created can be exported as PDF or JPEG files
Rajesh Jadhav
2010-06-04 09:06:19