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