Package fr.esrf.tangoatk.core

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

Related Classes of fr.esrf.tangoatk.core.INumberSpectrum

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.