Package net.sf.mzmine.modules

Examples of net.sf.mzmine.modules.MZmineModuleCategory


    }
  }

  public void addMenuItemForModule(MZmineProcessingModule module) {

    MZmineModuleCategory parentMenu = module.getModuleCategory();
    String menuItemText = module.getName();
    String menuItemToolTip = module.getDescription();

    JMenuItem newItem = new JMenuItem(menuItemText);
    newItem.setToolTipText(menuItemToolTip);
View Full Code Here

TOP

Related Classes of net.sf.mzmine.modules.MZmineModuleCategory

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.