Package org.freeplane.core.ui

Examples of org.freeplane.core.ui.MenuSplitter


  private void addActionToIconSubmenu(final JMenu menu, final MindIcon icon, final String fileName) {
    final AFreeplaneAction myAction = iconActions.get(icon);
    final int separatorPosition = fileName.indexOf('/');
    if (separatorPosition == -1) {
      new MenuSplitter().addMenuComponent(menu, new JMenuItem(myAction),  menu.getItemCount());
      return;
    }
    final String submenuName = fileName.substring(0, separatorPosition);
    final int componentCount = menu.getItemCount();
    if (componentCount != 0) {
View Full Code Here

TOP

Related Classes of org.freeplane.core.ui.MenuSplitter

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.