Examples of INumberSpectrum


Examples of fr.esrf.tangoatk.core.INumberSpectrum

  public String getAttributeName() {
    return attributeName;
  }

  public double getValueAtIndex(int index) {
    INumberSpectrum model = m_numberSpectrumModel.getSpectrumModel();

    if (model != null) {
      double[] values = model.getSpectrumValue();
      if (values != null && values.length > index) {
        double value = values[index];
        fireSelectedTableListener(value);
        return value;
      }
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.