Removed half-baked java source code parser.
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / RenderJavaInspect.java
index 16b0857..4b6ea85 100755 (executable)
@@ -14,22 +14,11 @@ import eu.svjatoslav.inspector.java.structure.Utils;
 
 public class RenderJavaInspect {
 
-    private static void fullProjectExample() {
-        // Create graph
-        final ClassGraph graph = new ClassGraph();
-
-        // Recursively scan current directory for Java source code and attempt
-        // to detect class names from there to be added to the graph.
-        graph.addProject(".");
-
-        // do not show single classes with no relationships on the graph
-        graph.hideOrphanedClasses();
-
-        // Produce SVG image titled "JavaInspect full project.png" to the
-        // user Desktop directory.
-        graph.generateGraph("JavaInspect full project");
-    }
-
+    /**
+     * Running this method via IDE will produce 2 files in project root directory:
+     * JavaInspect.svg (JavaInspect utility visualizes itself) and
+     * JavaInspect.dot (GraphViz dot file, for reference).
+     */
     private static void handpickClassesExample() {
         /*
          * This example demonstrates generating of class graph from hand picked
@@ -57,8 +46,5 @@ public class RenderJavaInspect {
     public static void main(final String[] args) {
 
         handpickClassesExample();
-
-        fullProjectExample();
-
     }
 }