Package org.jitterbit.application.ui.menu

Examples of org.jitterbit.application.ui.menu.MenuDictionary


        this.actions = actions;
    }

    @Override
    public JMenuItem createMenuItem(ApplicationWindow appWin) {
        MenuDictionary dict = MENU_DICTIONARY;
        KongaMenu menu = new KongaMenu(dict.getName(ID));
        menu.setMnemonic(dict.getMnemonic(ID));
        for (Action action : actions) {
            menu.add(new DefaultProxyAction(action, appWin.getViewManager()));
        }
        return menu;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.menu.MenuDictionary

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.