JMenu fileMenu = new JMenu("File");
fileMenu.setMnemonic(KeyEvent.VK_F);
menuBar.add(fileMenu);
NewEmptyAction newEmptyAction = new NewEmptyAction(application);
JMenuItem newEmptyItem = new JMenuItem(newEmptyAction);
fileMenu.add(newEmptyItem);
NewRandomAction newRandomAction = new NewRandomAction(application);
JMenuItem newRandomItem = new JMenuItem(newRandomAction);