X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftest%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fstructure%2Fexample%2FRenderJavaInspect.java;fp=src%2Ftest%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fstructure%2Fexample%2FRenderJavaInspect.java;h=df389f321003c4d6a6eae55847189b62cb5c5a72;hb=31e8e0b97c9f60f8820d708fa86c11d65f5445f3;hp=560c1726dd1a0c7bdc2c9afc584146e34eb07c93;hpb=532776acd85fbaa29f1941356b51707676e30c23;p=javainspect.git diff --git a/src/test/java/eu/svjatoslav/inspector/java/structure/example/RenderJavaInspect.java b/src/test/java/eu/svjatoslav/inspector/java/structure/example/RenderJavaInspect.java old mode 100644 new mode 100755 index 560c172..df389f3 --- a/src/test/java/eu/svjatoslav/inspector/java/structure/example/RenderJavaInspect.java +++ b/src/test/java/eu/svjatoslav/inspector/java/structure/example/RenderJavaInspect.java @@ -1,10 +1,10 @@ /* * JavaInspect - Utility to visualize java software - * Copyright (C) 2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * Copyright (C) 2013-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu * * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public License - * as published by the Free Software Foundation. + * modify it under the terms of version 3 of the GNU Lesser General Public License + * or later as published by the Free Software Foundation. */ package eu.svjatoslav.inspector.java.structure.example; @@ -16,14 +16,6 @@ import eu.svjatoslav.inspector.java.structure.Utils; public class RenderJavaInspect { - public static void main(final String[] args) throws FileNotFoundException { - - handpickClassesExample(); - - fullProjectExample(); - - } - private static void fullProjectExample() { final ClassGraph graph = new ClassGraph(); @@ -66,4 +58,12 @@ public class RenderJavaInspect { // directory and keep intermediary GraphViz DOT file for reference. graph.generateGraph("JavaInspect", true); } + + public static void main(final String[] args) throws FileNotFoundException { + + handpickClassesExample(); + + fullProjectExample(); + + } }