Examples of PeakSummaryComponent


Examples of net.sf.mzmine.util.components.PeakSummaryComponent

    int series = Integer.parseInt(indexSplit[0]);
    int item = Integer.parseInt(indexSplit[1]);

    PeakListRow row = mainDataSet.getRow(series, item);

    PeakSummaryComponent newSummary = new PeakSummaryComponent(row,
        peakList.getRawDataFiles(), true, true, true, true, false,
        ComponentToolTipManager.bg);

    double xValue = mainDataSet.getXValue(series, item);
    double yValue = mainDataSet.getYValue(series, item);
    newSummary.setRatio(xValue, yValue);

    return newSummary;

  }
View Full Code Here

Examples of net.sf.mzmine.util.components.PeakSummaryComponent

    super(row.toString(), true, true, true, true);

    setLayout(new BorderLayout());

    PeakSummaryComponent peakRowSummary = new PeakSummaryComponent(row,
        row.getRawDataFiles(), true, false, true, true, true,
        this.getBackground());

    add(peakRowSummary, BorderLayout.CENTER);
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.