028c7757508f399b30f87c28511f4478c74c9d04
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / structure / example / RenderExampleProject.java
1 /*
2  * JavaInspect - Utility to visualize java software
3  * Copyright (C) 2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.inspector.java.structure.example;
11
12 import eu.svjatoslav.inspector.java.structure.ClassGraph;
13 import eu.svjatoslav.inspector.java.structure.example.structure.SampleClass;
14
15 public class RenderExampleProject {
16
17         public static void main(final String[] args) {
18                 final ClassGraph graph = new ClassGraph();
19
20                 graph.addClass(SampleClass.class);
21
22                 graph.generateGraph("example");
23
24         }
25
26 }