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);
	}
}

