vote up 1 vote down star

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.

flag

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

6 Answers

vote up 1 vote down check

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|flag
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 at 8:38
Looks promising, but they just started. – the_drow Aug 22 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 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 at 9:22
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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