Java OO code analysis in Eclipse

I saw this question , but that is not what I am looking for.

There used to be a plugin for JBuilder or Together that analyzed your code to find when one class depended too much on another class and the like. He suggested refactoring based on GoF design patterns.

I checked PMD, but that is not what I need, for sure. I am looking for something more based on OO and less on Java syntax. Is there anything for Eclipse that offers OO code refactoring?

+3
source share
3 answers

JDepend4Eclipse is the eclipse plugin for JDepend , a tool that analyzes package dependencies.

CodePro event code has dependency analysis, but it is not a free plugin. He has a trial version.

+2
source

You really should take a look at structure101 . In my opinion, the best Java dependency analysis tool on the market. Perhaps also take a look at IntelliJ, I think its analysis and refactoring functions have always been super-economical to outshine.

+1
source

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


All Articles