Easiest Way To Create UML Sequence Diagrams
In need of creating various UML Sequence Diagrams and in no mood to deal with Visio or its other graphical editor ilk, I did some research and ended up at a really nice solution.
What I wanted was to be able to specify my sequence using a simple text description and have a tool turn that into a sequence diagram. What I found was a tool called Sequence by Alex Moffat that does exactly that. The syntax takes a minute to get used to, but once you see what’s going on it’s very easy to use. The generated images are reasonably attractive and easily exportable to png, gif, etc.
Here’s a sample of the syntax:
objectOne.methodOne {
objectTwo.methodTwo -> value {
objectThree.methodThree -> anotherValue;
objectFour.methodFour->finalValue;
}
}
And here’s the resulting diagram:

Once you download the jar and run it hit the “Help” option and look at the examples. They’re self explanatory and fairly complete.
Manage your expenses via Email, SMS, iPhone, Twitter, Voice (Call and say your expense), IM (Yahoo, AIM, MSN), or Web.
Comments(3)
There are others tools that do similar things. For instance, you could take a look at the yUML (http://yUML.me)tool. Other tools are described here: http://modeling-languages.com/blog/content/textual-notationslanguages-define-uml-models-list-tools
Hope you find it useful
I think you forgot to put the link to the download page for Sequence
The download is hidden in the “Sequence by Alex Moffat” link, scroll down the page and you’ll see it.