Creating a UML Class Diagram from Smalltalk Code

I am currently working with a Smalltalk-based application server using Visual Works. I am looking for a way to generate a UML class diagram from code. I was looking for a lot of tools, but nothing works or is not useful.

+7
source share
2 answers

The VisualWorks distribution contains a tool called ADvance that allows you to create circular UML class diagrams, that is, you can reverse engineer class diagrams from your code, edit this class diagram, and then generate the code from the changes. You can also edit the code directly from the chart. A fairly convenient simple tool, and it is a pity that it is not very famous.

To download ADvance, open the "Package Manager" and "Suggestions" click "Developer Tools". ADvance is the first package indicated there.

+5
source

Moose is a software analysis and visualization tool for Smalltalk. It offers many different views on Smalltalk code, and you can visually examine your system. However, there are no strict UML visualizations.

You will find more here, http://moose.unibe.ch

http://morlhon.net/blog/images/codecrawler.png

+1
source

All Articles