1: import javax.swing.*;
3: /**
4: A program for editing UML diagrams.
5: */
6: public class SimpleGraphEditor
7: {
8: public static void main(String[] args)
9: {
10: JFrame frame = new GraphFrame(new SimpleGraph());
11: frame.setVisible(true);
12: }
13: }