Package barsuift.simLife.j2d.action.menu

Examples of barsuift.simLife.j2d.action.menu.HelpNavigationAction


    private JMenu createHelpMenu(JFrame parentWindow) {
        JMenu helpMenu = new JMenu("Help");
        helpMenu.setMnemonic(Mnemonics.HELP);

        HelpNavigationAction helpNavAction = new HelpNavigationAction(parentWindow);
        JMenuItem helpNavItem = new JMenuItem(helpNavAction);
        helpMenu.add(helpNavItem);

        return helpMenu;
    }
View Full Code Here

TOP

Related Classes of barsuift.simLife.j2d.action.menu.HelpNavigationAction

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.