new JMenu(ResourceFactory.getString(MENU_EXTRA_NAME));
JMenu configureMenu=
new JMenu(ResourceFactory.getString(MENU_CONFIGURE_NAME));
JMenuItem configureGUIItem=
new JMenuItem(new ConfigurationAction(this,
ACTION_CONFIGURE_GUI_NAME,
ConfigurationDialog.Configurations.GUI));
JMenuItem configureMidiItem=
new JMenuItem(new ConfigurationAction(this,
ACTION_CONFIGURE_MIDI_NAME,
ConfigurationDialog.Configurations.MIDI));
JMenuItem configureRandomItem=
new JMenuItem(new ConfigurationAction(this,
ACTION_CONFIGURE_RANDOM_NAME,
ConfigurationDialog.Configurations.RANDOM));
JMenuItem configureSynthItem=
new JMenuItem(new ConfigurationAction(this,
ACTION_CONFIGURE_SYNTHESIZER_NAME,
ConfigurationDialog.Configurations.SYNTHESIZER));
configureMenu.add(configureGUIItem);
configureMenu.add(configureMidiItem);
configureMenu.add(configureRandomItem);