1  import javax.swing.*;
  2  
  3  /**
  4     A program for editing graphs.
  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  }
 14