01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
package horstmann.ch08_graphed;
import javax.swing.JFrame;

/**
   A program for editing UML diagrams.
 */
public class SimpleGraphEditor
{
  public static void main(String[] args)
  {
    JFrame frame = new GraphFrame(new SimpleGraph());
    frame.setVisible(true);
  }
}