01: import javax.swing.*;
02: 
03: /**
04:    A program for editing UML diagrams.
05: */
06: public class SimpleGraphEditor
07: {
08:    public static void main(String[] args)
09:    {
10:       JFrame frame = new GraphFrame(new SimpleGraph());
11:       frame.setVisible(true);
12:    }
13: }
14: