/** * This is the main class from which the GUI will be launched. Any prior * computations will be done here. For the most part, though, we'll just be * launching the GUI and doing nothing else * * @author Eric Liebowitz * @version 22jun11 */ package simple_uml; import simple_uml.model.MainModel; import simple_uml.view.MainView; public class SimpleUML { public static void main (String[] args) { new MainView(new MainModel("FileName")).setVisible(true); } }