Examples of MassListTableWindow


Examples of net.sf.mzmine.modules.deconvolutedanalysis.massdetection.table.MassListTableWindow

    if (isCanceled())
      return;

    // Add table to the GUI
    MZmineCore.getDesktop().addInternalFrame(
        new MassListTableWindow(peakList));

    // If this task was canceled, stop processing
    if (!isCanceled()) {
      // Set task status to FINISHED
      setStatus(TaskStatus.FINISHED);
View Full Code Here

Examples of net.sf.mzmine.modules.deconvolutedanalysis.massdetection.table.MassListTableWindow

    // If our peak list is a list of mass candidates from the
    // deconvolutedanalysis.massdetection module, use our custom table
    // window.
    if (peakList.getName().startsWith("Mass Candidates"))
      MZmineCore.getDesktop().addInternalFrame(
          new MassListTableWindow(peakList));

    // Otherwise, use this module's PeakListTableWindow
    else
      MZmineCore.getDesktop().addInternalFrame(
          new PeakListTableWindow(peakList, parameters));
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.