Package net.sf.mzmine.parameters.parametertypes

Examples of net.sf.mzmine.parameters.parametertypes.RangeComponent


    super(new BorderLayout());

    dataTypeCombo = new JComboBox(HistogramDataType.values());
    add(dataTypeCombo, BorderLayout.WEST);

    dataRangeComponent = new RangeComponent(
        NumberFormat.getNumberInstance());
    add(dataRangeComponent, BorderLayout.CENTER);

  }
View Full Code Here


    comboDataFileName = new JComboBox(dataFiles);
    comboDataFileName.setSelectedItem(previewDataFile);
    comboDataFileName.addActionListener(this);

    rtRangeBox = new RangeComponent(MZmineCore.getConfiguration()
        .getRTFormat());
    rtRangeBox.setValue(previewDataFile.getDataRTRange(1));

    mzRangeBox = new RangeComponent(MZmineCore.getConfiguration()
        .getMZFormat());
    mzRangeBox.setValue(previewDataFile.getDataMZRange(1));

    pnlFlds.add(comboDataFileName);
    pnlFlds.add(Box.createVerticalStrut(10));
View Full Code Here

TOP

Related Classes of net.sf.mzmine.parameters.parametertypes.RangeComponent

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.