2 * JavaInspect - Utility to visualize java software
3 * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 3 of the GNU Lesser General Public License
7 * or later as published by the Free Software Foundation.
10 package eu.svjatoslav.inspector.java.structure.example;
12 import eu.svjatoslav.inspector.java.structure.ClassGraph;
13 import eu.svjatoslav.inspector.java.structure.example.torender.SampleClass;
14 import eu.svjatoslav.inspector.java.structure.example.torender.SampleClass2;
16 public class RenderUsingReflection {
18 public static void main(final String[] args) {
20 new ClassGraph().add(SampleClass.class, SampleClass2.class)
21 .generateGraph("example");