Examples of MZmineHelpSet


Examples of net.sf.mzmine.desktop.impl.helpsystem.MZmineHelpSet

    return mainPanel.getSelectedFrame();
  }

  public void showAboutDialog() {

    MZmineHelpSet hs = help.getHelpSet();
    if (hs == null)
      return;

    HelpBroker hb = hs.createHelpBroker();
    hs.setHomeID(aboutHelpID);

    hb.setDisplayed(true);
  }
View Full Code Here

Examples of net.sf.mzmine.desktop.impl.helpsystem.MZmineHelpSet

    if (helpImp == null) {
      setEnabled(false);
      return;
    }

    MZmineHelpSet hs = helpImp.getHelpSet();

    if (hs == null) {
      setEnabled(false);
      return;
    }

    MZmineHelpMap map = (MZmineHelpMap) hs.getLocalMap();

    if (!map.isValidID(helpID, hs)) {
      setEnabled(false);
      return;
    }

    HelpBroker hb = hs.createHelpBroker();
    hs.setHomeID(helpID);

    this.addActionListener(new CSH.DisplayHelpFromSource(hb));

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.