Class Dependency Graphs for Java


/ Published in: Bash
Save to your folder(s)

bash 3-line shell script for visualization of java class dependencies with graphviz. Please see my blog post for details and leave comments there.


Copy this code and paste it in your HTML
  1. echo "digraph G {"> diagram.dot
  2. sed -n -e "s/class [ ]*\([a-zA-Z0-9_]*\)[ ]* extends [ ]*\([a-zA-Z0-9_]*\)[ ]*[{][ ]*/\1 -> \2 ;/p" *.java >> diagram.dot
  3. echo "}" >> diagram.dot

URL: http://www.myoutsourcedbrain.com/2009/04/class-dependency-graphs.html

Report this snippet


Comments


You need to login to view comments.