Package net.laubenberger.bogatyr.view.swing

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


    createLayout();

    final List<Object> result = new ArrayList<Object>();
    result.add(actionOpen);
    result.add(new Separator());
    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


    result.add(new ActionData());
    result.add(new ActionDb());
    result.add(new ActionThread());
    result.add(new ActionTask());
    result.add(new ActionMessage());
    result.add(new Separator());
    result.add(new ActionComponents());
    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.Separator

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.