vote up 3 vote down star
3

Here is my problem:

I will provide the source code of my application as input and what I want as output is a visual representation of the relationship between classes, method calls etc.

Is there some tool to do this?

flag

7 Answers

vote up 4 vote down check

If you use the Netbeans IDE it does have tools to reverse engineer your source code into UML class diagrams. After loading your source code into the IDE. You can create a new UML->Reverse Engineered java-platform model.

Check out This Netbeans Wiki page for more details.

link|flag
1  
Sadly, now the UML plugin of Netbeans is not maintained anymore. – ivan_ivanovich_ivanoff Aug 25 at 9:27
vote up 0 vote down

visual representation of the relationship between classes,

NetBeans can draw you UML diagram from classes, and I guess any decent UML tool could also.

method calls etc.

UML also have types of diagrams used for this, I've never tried to get it out of a source, but presumably, some of the UML programs could do it.

link|flag
vote up 0 vote down

What you need is usually done by class of tools called RAD. Good example would be PowerBuilder. You can get diagrams (class diagrams, etc) using Reverse engineering process.

link|flag
vote up 0 vote down

Eclipse has quite a few UML plugins. In particular, Slime UML and Green are both free and both promise to perform reverse engineering. Please note that Slime has received a much higher rating from the community.

link|flag
vote up 0 vote down

Borland produce by far best tool for this sort of thing - Together. It gives you a full model driven approach to development, so that might be overkill for what you require. It is commerically licensed, but they provide a community edition for non commerical work.

There are eclipse plugins that can do UML reverse engineering - here is a long list. I have tried some of the free ones, and quite liked slime and argo.

link|flag
vote up 0 vote down

You can try Rational Systems Developer. It is ofcourse based on eclipse platform!!

You can do transformations to and from UML. I had some minor issues with lack of support for primitive types but nothing major..

link|flag
vote up 2 vote down

Structure 101 is a great tool. Costs money though... Link to Wiki describing it, for some reason the vendor site is down ATM

link|flag
I use Structure101 almost daily and can really recommend it! A great tool to understand code base and test refactorings on it. – Kaitsu May 8 at 8:13

Your Answer

Get an OpenID
or

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