private JMenu createFileMenu(Application application) {
JMenu fileMenu = new JMenu("File");
fileMenu.setMnemonic(Mnemonics.FILE);
NewEmptyAction newEmptyAction = new NewEmptyAction(application);
JMenuItem newEmptyItem = new JMenuItem(newEmptyAction);
fileMenu.add(newEmptyItem);
NewRandomAction newRandomAction = new NewRandomAction(application);
JMenuItem newRandomItem = new JMenuItem(newRandomAction);