/** * The menubar for the MainView. * * TODO: Menus do nothing and need to be connected to a model . * @author Eric Liebowitz * @version 22jun11 */ package simple_uml.view; import javax.swing.*; import java.awt.*; import java.awt.event.*; public class MenuBar extends JMenuBar { public MenuBar () { super (); this.add(new FileMenu()); this.add(new EditMenu()); this.add(new SumlMenu()); } }