mirror of https://github.com/dspinellis/UMLGraph
34 lines
935 B
Java
34 lines
935 B
Java
/*
|
|
* Create a graphviz graph based on the classes in the specified java
|
|
* source files.
|
|
*
|
|
* (C) Copyright 2002 Diomidis Spinellis
|
|
*
|
|
* Permission to use, copy, and distribute this software and its
|
|
* documentation for any purpose and without fee is hereby granted,
|
|
* provided that the above copyright notice appear in all copies and that
|
|
* both that copyright notice and this permission notice appear in
|
|
* supporting documentation.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
*
|
|
* $Id$
|
|
*
|
|
*/
|
|
|
|
import com.sun.javadoc.*;
|
|
|
|
public class UmlGraph {
|
|
public static boolean start(RootDoc root) {
|
|
ClassDoc[] classes = root.classes();
|
|
for (int i = 0; i < classes.length; i++) {
|
|
ClassDoc c = classes[i];
|
|
|
|
System.out.println(classes[i]);
|
|
}
|
|
return true;
|
|
}
|
|
}
|