Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UML tool for reverse engineering an eclipse project

I am currently working on a project in Eclipse but the problem is that this project is very big (a lot of codes, classes, packages, etc) and undocumented. Since, the project is written in Java, my idea was to make a reverse enineering of the project to see his architecture in UML. Do you know an eclipse plugin who can complete this task very easily? Thanks for your answer !!

like image 737
Dimitri Avatar asked Apr 26 '11 12:04

Dimitri


2 Answers

I think MoDisco is what you are looking for ( here for a short intro)

like image 73
Jordi Cabot Avatar answered Nov 12 '22 00:11

Jordi Cabot


It seems that the question is dealing with Eclipse plugin therefore Modisco and StartUML are not a possible choice because they are either not a graphical class diagram viewwer or an Eclipse plugin.

The tools that I have evaluated and selected are:

Topcased can reverse a project and gives an UML view. The reverse is good even if not recursive. I mean that you can detect only object having their own information such as class, interface, package, method and attributes but you can not detect calls between classes because this require a recursive reverse.

eUML will give you a visual class diagrams and the possibility to navigate but no model only EMF tags inserted inside your own code. I like the visual representation of the class diagram but having EMF tags in my code is too intrusive !!

You can try RSA which is a pretty good reverse having a real UML model but you will also get EMF tag in your code

The best for me and with no doubt is EclipseUML Omondo with no tag in the code and a high quality UML model but it is really too expensive !!

like image 45
UML GURU Avatar answered Nov 12 '22 00:11

UML GURU