I don't want anything that reads or generates code just drawing diagrams.

I also must be able to enter code as text because i'm pretty sure it will not support the Eiffel langauge and i really don't want to click through a dozend buttons and dialogs just to enter a method signature (who ever invented this shit has no idea about usability).

Thats why i don't use Visio. There must be something better.

I like the idea of "http://websequencediagrams.com/" for describing UML diagrams and compile them to PNG files.

link|improve this question

65% accept rate
Eiffel? Who uses that besides Bertrand Meyer anymore? – duffymo Aug 22 '09 at 11:25
feedback

7 Answers

up vote 0 down vote accepted

Cadifra is perfect for your needs. Very intuitive user interface and all text is free form so you can adapt it to your own language.

I am not associated with the developers. I am just a satisfied regular Cadifra user.

http://www.cadifra.com

link|improve this answer
feedback

I use GraphViz for drawing diagrams. It allows you to enter them as text and then compile them to PNG, PDF and other formats.

There are two main tools, dot for directed graphs, and neato for layout graphs. I think you'll want dot.

A source dot graph looks like this:

digraph G {
   main -> parse -> execute;
   main -> init;
   main -> cleanup;
   execute -> make_string;
   execute -> printf
   init -> make_string;
   main -> printf;
   execute -> compare;
}

That's at its simplest. You can add labels, formatting, set shapes for nodes and all sorts of other things to make your graphs look nice.

link|improve this answer
feedback

I like Tobin Harris' YUML website. It is like the web version of drawing uml diagrams on the back of a napkin :)

Kindness,

Dan

link|improve this answer
feedback

You should give ArgoUML a try

ArgoUML is the leading open source UML modeling tool and includes support for all standard UML 1.4 diagrams. It runs on any Java platform and is available in ten languages.

link|improve this answer
I was thinking about recommending ArgoUML as well, but this does not fit his needs, as he wants a tool where he can enter code. This is not possible in ArgoUML (at least I just tried it and can't find a way at all) – FrankS Aug 22 '09 at 8:38
Looks promising, but they just started. – the_drow Aug 22 '09 at 8:42
@the_drow they just started? ArgoUML is around for years already, the first release is from 2002 - argouml-downloads.tigris.org – FrankS Aug 22 '09 at 8:44
I just wanted to write "it's good enough for drawing for me" and i just found out that they don't have an undo operation if you accidentally removed something from the modell. Thats at least a huge stinker. – Lothar Aug 22 '09 at 9:22
feedback

I would try dia. This is a simple tool that is great from UML diagrams.

link|improve this answer
feedback

It seems that you would be happy using a textual notation to define the UML model. If so, a list of tools that allow the specification of UML models as text (and that then, create and show the corresponding diagram) can be found here: http://modeling-languages.com/blog/content/textual-notationslanguages-define-uml-models-list-tools

Another easy option, if you are a programmer AND you use Eclipse as IDE, would be to use one of the Eclipse UML2 compatible tools (the above link also includes a link to those tools)

link|improve this answer
feedback

The EiffelStudio IDE has a build-in Diagram editor that supports both BON and UML notation.

A commercial and a free version are avaiable http://www.eiffel.com.

You'll should be able to write your code and get the UML representation for free.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.