From 5a361e93b321fffd98e6688ee231b3b3aeb8e5c8 Mon Sep 17 00:00:00 2001 From: Svjatoslav Agejenko Date: Mon, 26 Jan 2015 21:10:17 +0200 Subject: [PATCH] fixed broken links --- doc/index.html | 166 ++++++++++++++++++++++++------------------------- 1 file changed, 83 insertions(+), 83 deletions(-) mode change 100755 => 100644 doc/index.html diff --git a/doc/index.html b/doc/index.html old mode 100755 new mode 100644 index 82116d1..775b647 --- a/doc/index.html +++ b/doc/index.html @@ -5,16 +5,16 @@ JavaInspect -

JavaInspect - Utility to visualize java software

- Download -    - Online - homepage    - Other applications - hosted on svjatoslav.eu -
+        

JavaInspect - Utility to visualize java software

+ Download +    + Online + homepage    + Other applications + hosted on svjatoslav.eu +
 Program author:
     Svjatoslav Agejenko
     Homepage: http://svjatoslav.eu
@@ -24,76 +24,76 @@ This software is distributed under Sixth
-	project:
-	architecture
-		graphs
+        

Example graphs

-
-
A very simple example: -
- + Example visualization of + Sixth + project: + architecture + graphs -
Graph legend: -
- +
+
A very simple example: +
+ +
Graph legend: +
+ -

Usage example 1

+ +

Usage example 1

 
-		/*
-		 * This example demonstrates generating of class graph from hand picked
-		 * classes.
-		 */
+                /*
+                 * This example demonstrates generating of class graph from hand picked
+                 * classes.
+                 */
 
-		// Create graph
-		final ClassGraph graph = new ClassGraph();
+                // 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.
+                // 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 object to the graph.
-		graph.addObject(graph);
+                // Add some object to the graph.
+                graph.addObject(graph);
 
-		// Add some class to the graph.
-		graph.addClass(Utils.class);
+                // Add some class to the graph.
+                graph.addClass(Utils.class);
 
-		// Produce bitmap image titled "JavaInspect.png" to the user Desktop
-		// directory and keep intermediary GraphViz DOT file for reference.
-		graph.generateGraph("JavaInspect", true);
+                // Produce bitmap image titled "JavaInspect.png" to the user Desktop
+                // directory and keep intermediary GraphViz DOT file for reference.
+                graph.generateGraph("JavaInspect", true);
 
 
 
@@ -104,24 +104,24 @@ Result:
 
-

Usage example 2

+

Usage example 2

 
-		// Recursively scan current directory for Java source code and attempt
-		// to detect class names from there to be added to the graph.
-		graph.addProject(".");
+                // Recursively scan current directory for Java source code and attempt
+                // to detect class names from there to be added to the graph.
+                graph.addProject(".");
 
-		// Blacklist example classes from being shown on the graph
-		graph.getFilter().blacklistClassPattern(
-				"eu.svjatoslav.inspector.java.structure.example.*");
+                // Blacklist example classes from being shown on the graph
+                graph.getFilter().blacklistClassPattern(
+                                "eu.svjatoslav.inspector.java.structure.example.*");
 
-		// do not show single classes with no relationships on the graph
-		graph.hideOrphanedClasses();
+                // do not show single classes with no relationships on the graph
+                graph.hideOrphanedClasses();
 
-		// Produce bitmap image titled "JavaInspect full project.png" to the
-		// user Desktop directory.
-		graph.generateGraph("JavaInspect full project");
+                // Produce bitmap image titled "JavaInspect full project.png" to the
+                // user Desktop directory.
+                graph.generateGraph("JavaInspect full project");
 
 
 
@@ -132,8 +132,8 @@ Result:
 
 
 
-	

Embedding JavaInspect in your project

-
+        

Embedding JavaInspect in your project

+
 
 Declare JavaInspect as dependency:
 
@@ -146,13 +146,13 @@ Declare JavaInspect as dependency:
             <artifactId>javainspect</artifactId>
             <version>1.3</version>
         </dependency>
- 
+
     </dependencies>
-    
-  
-  
+
+
+
 Add Maven repository to retrieve artifact from:
-  
+
     <repositories>
         <repository>
             <id>svjatoslav.eu</id>
@@ -165,11 +165,11 @@ Add Maven repository to retrieve artifact from:
 
 
 
-	

Requirements

+

Requirements

-
- GraphViz - shall be installed on - the computer. +
+ GraphViz - shall be installed on + the computer. -- 2.20.1