updated example code
[javainspect.git] / src / test / java / eu / svjatoslav / inspector / java / structure / example / RenderJavaInspect.java
index df389f3..2f535b1 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * JavaInspect - Utility to visualize java software
- * Copyright (C) 2013-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 3 of the GNU Lesser General Public License
  * or later as published by the Free Software Foundation.
@@ -24,8 +24,7 @@ public class RenderJavaInspect {
                graph.addProject(".");
 
                // Blacklist example classes from being shown on the graph
-               graph.getFilter().blacklistClassPattern(
-                               "eu.svjatoslav.inspector.java.structure.example.*");
+               graph.blacklistClassPattern("eu.svjatoslav.inspector.java.structure.example.*");
 
                // do not show single classes with no relationships on the graph
                graph.hideOrphanedClasses();
@@ -38,25 +37,25 @@ public class RenderJavaInspect {
        private static void handpickClassesExample() {
                /*
                 * This example demonstrates generating of class graph from hand picked
-                * classes.
+                * classes and visualizing GraphViz itself.
                 */
 
                // Create graph
                final ClassGraph graph = new ClassGraph();
 
-               // While classes and objects can be immediately passed to ClassGraph
-               // constructor as arguments, it is also possible to add then one by one
-               // as in the following example.
+               // Add some random object to the graph. GraphViz will detect Class from
+               // the object.
+               graph.add(graph);
 
-               // Add some object to the graph.
-               graph.addObject(graph);
+               // Also add some random class to the graph.
+               graph.add(Utils.class);
 
-               // Add some class to the graph.
-               graph.addClass(Utils.class);
+               // Keep intermediary GraphViz DOT file for reference.
+               graph.setKeepDotFile(true);
 
                // Produce bitmap image titled "JavaInspect.png" to the user Desktop
-               // directory and keep intermediary GraphViz DOT file for reference.
-               graph.generateGraph("JavaInspect", true);
+               // directory
+               graph.generateGraph("JavaInspect");
        }
 
        public static void main(final String[] args) throws FileNotFoundException {