Package de.chris_soft.nanodoa.gui.actions

Examples of de.chris_soft.nanodoa.gui.actions.RestartAction


  private void addFileMenu() {
    JMenu menu = new JMenu("File");
    menu.setMnemonic(KeyEvent.VK_F);
    createMenuItemWithControlAccelerator(menu, "Exit", KeyEvent.VK_X, new StopSystemAction(), KeyEvent.VK_Q);
    createMenuItemWithControlAccelerator(menu, "Restart", KeyEvent.VK_R, new RestartAction(), KeyEvent.VK_R);
    add(menu);
  }
View Full Code Here

TOP

Related Classes of de.chris_soft.nanodoa.gui.actions.RestartAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.