Get cool android project structure

I have an open project project for Android written in Java (Eclipse). There are about 300 classes. I want to be able to understand the code faster and have a general idea of ​​all classes, interfaces and know how they relate to each other. Is there a way in Eclips or an external utility that could help get the project class structure?

+6
source share
4 answers

I have not tried, but it looks good: http://sourceforge.net/projects/jug/

EDIT: Well, that looks even better: http://www.objectaid.com/home

EDIT 2: See also: http://www.nwiresoftware.com/

+4
source

I have not done this with Java yet, but you can try some of the options discussed here:

How to generate UML diagrams (especially sequence diagrams) from Java code

to get the UML diagrams of your code

+2
source

Eclipse has several UML plugins available. It is really about how much information you want and with which you are comfortable. I found Object Aid the most popular, but a quick Google search for UML plugins for Eclipse returns a few parameters.

+1
source

If you need detailed UML diagrams, I highly recommend taking a look at Enterprise Architect . It provides tight integration with Eclipse. The desktop version is quite affordable.

0
source

Source: https://habr.com/ru/post/922200/


All Articles