X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=doc%2Findex.html;h=b3da463deb948fd76018efa53cc87890b0325990;hb=433b179b8a88f38aecd7805de3bdbdd185495d85;hp=9028b5cd2dc82fe1692abd9b5d97769e1838c722;hpb=75e481b8054fb685f94eeb59e92c4fb50e6d4611;p=javainspect.git diff --git a/doc/index.html b/doc/index.html index 9028b5c..b3da463 100644 --- a/doc/index.html +++ b/doc/index.html @@ -27,6 +27,10 @@ This software is distributed under General + Goal: simplify/speed up understanding the computer program code by + automatically visualizing its structure. + +

JavaInspect is a Java library that you can embed into your Java project with a few lines of Maven configuration and then visualize any part of your Java program structure with few simple JavaInspect API calls at @@ -71,9 +75,10 @@ This software is distributed under
+ // Create graph -final Graph graph = new Graph(); +final ClassGraph graph = new ClassGraph(); // Add some object to the graph. graph.addObject(graph); @@ -107,7 +112,7 @@ Declare JavaInspect as dependency: <dependency> <groupId>eu.svjatoslav</groupId> <artifactId>javainspect</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0</version> </dependency> </dependencies>