Package net.laubenberger.bogatyr.view.swing

Examples of net.laubenberger.bogatyr.view.swing.MenuItemCheckBox


    result.add(actionStart);
    result.add(actionStop);
    result.add(actionSkipBackward);
    result.add(actionSkipForward);
    result.add(new Separator());
    result.add(new MenuItemCheckBox(getModuleData().getBoolean(KEY_IS_RANDOM), new ActionRandom()));
    result.add(new MenuItemCheckBox(getModuleData().getBoolean(KEY_IS_ENQUEUE), new ActionEnqueue()));
    result.add(new MenuItemCheckBox(getModuleData().getBoolean(KEY_IS_ON_TOP), new ActionOnTop()));
    result.add(new Separator());
    result.add(new ActionAbout());

    if (log.isDebugEnabled()) log.debug(HelperLog.methodExit(result));
    return result;
View Full Code Here

TOP

Related Classes of net.laubenberger.bogatyr.view.swing.MenuItemCheckBox

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.