001package horstmann.ch08_graphed;
002import javax.swing.JFrame;
003
004/**
005   A program for editing UML diagrams.
006 */
007public class SimpleGraphEditor
008{
009        public static void main(String[] args)
010        {
011                JFrame frame = new GraphFrame(new SimpleGraph());
012                frame.setVisible(true);
013        }
014}
015