Is there a tool that will look at my Java code, and suggest a good package structure? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:55:24Zhttp://stackoverflow.com/feeds/question/144392http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct3Is there a tool that will look at my Java code, and suggest a good package structure?sanity2008-09-27T20:26:55Z2008-09-28T01:05:08Z
<p>I have a large codebase, and I'd like to refactor the package structure so that classes which interact heavily go in the same package.</p>
<p>It seems that it should be possible to create a tool that could look at the interactions between classes, and then group together those classes that interact heavily. These groupings might then suggest a good hierarchy for packages.</p>
<p>Does such a tool exist? (open source is preferred).</p>
http://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct/144399#1443990Answer by JeffFoster for Is there a tool that will look at my Java code, and suggest a good package structure?JeffFoster2008-09-27T20:28:31Z2008-09-27T20:28:31Z<p>Try some Pasta (see <a href="http://freshmeat.net/projects/pastatool/" rel="nofollow">http://freshmeat.net/projects/pastatool/</a>)</p>
http://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct/144400#1444000Answer by sblundy for Is there a tool that will look at my Java code, and suggest a good package structure?sblundy2008-09-27T20:28:57Z2008-09-27T20:28:57Z<p><a href="http://www.intellij.com" rel="nofollow">IntelliJ</a> has some code matrix tools in this direction.</p>
http://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct/144576#1445760Answer by Uri for Is there a tool that will look at my Java code, and suggest a good package structure?Uri2008-09-27T22:01:11Z2008-09-27T22:01:11Z<p>Just a comment (not really an answer since I am not aware of a specific tool but I can't comment yet)</p>
<p>Have you looked at formal concept analysis? </p>
<p>Generally it's a way of grouping together entities that share the same properties.
For example, Siff and Reps (google for the paper) did automatic modularization by looking at the relation between functions and global variables. In my own research, I used the relations of class methods that access the same fields. Siff and Reps (google for paper) did automatic modularization.</p>
<p>FCA may not be the best approach here since you are trying to group classes against themselves, but I think that they can still be applied. </p>
http://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct/144781#1447810Answer by LeedsSideStreets for Is there a tool that will look at my Java code, and suggest a good package structure?LeedsSideStreets2008-09-27T23:50:26Z2008-09-27T23:50:26Z<p>Something that can at least tell you if you're on the right track design-wise is <a href="http://clarkware.com/software/JDepend.html" rel="nofollow">JDepend</a>. It encourages dependency on highly abstract packages (that presumably will change less than packages with code that is less abstract) and will warn you when your packages have circular dependencies. I find it to be a good reality check.</p>
<p>There are numerous ways to use it, including as an <a href="http://andrei.gmxhome.de/jdepend4eclipse/" rel="nofollow">Eclipse plugin</a>.</p>
http://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct/144913#1449132Answer by Alex Miller for Is there a tool that will look at my Java code, and suggest a good package structure?Alex Miller2008-09-28T01:01:34Z2008-09-28T01:01:34Z<p>You could try Lattix, which uses the Dependency Structure Matrix to show you dependencies and hidden structure within your code at both class and package level. I've found it helpful for this kind of stuff in the past.</p>
<p><a href="http://www.lattix.com/" rel="nofollow">http://www.lattix.com/</a></p>
http://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct/144914#1449143Answer by Alex Miller for Is there a tool that will look at my Java code, and suggest a good package structure?Alex Miller2008-09-28T01:02:43Z2008-09-28T01:02:43Z<p>Structure101 is another product that can analyze the structure of your code and do dependency and what-if analysis.</p>
<p><a href="http://www.headwaysoftware.com/products/structure101/index.php" rel="nofollow">http://www.headwaysoftware.com/products/structure101/index.php</a></p>
http://stackoverflow.com/questions/144392/is-there-a-tool-that-will-look-at-my-java-code-and-suggest-a-good-package-struct/144917#1449172Answer by Alex Miller for Is there a tool that will look at my Java code, and suggest a good package structure?Alex Miller2008-09-28T01:05:08Z2008-09-28T01:05:08Z<p>Structure Analysis for Java is an Eclipse plugin that does some dependency analysis:</p>
<p><a href="http://stan4j.com/" rel="nofollow">http://stan4j.com/</a></p>