Is there a way to create a dependency graph for classes and / or methods of Java SE projects in NetBeans 7? I have a very large project, and I would like to clean up unused classes or methods (and a dependency graph would also be useful).
The "center" of the graph will be the entry point main()for the main classes that I call, and adjacencies - method calls (including some Swing environment methods for classes that override the Java Swing structure).
source
share