Examples of PeriodAnalysisCoordinateType


Examples of org.aavso.tools.vstar.util.period.PeriodAnalysisCoordinateType

    // TODO: rather than a double[][] here, we should probably use a class
    // since the second element is actually an integer!
    int n = (int) this.topRankedIndexPairs[rowIndex][1]; // 1 = index into
    // data lists

    PeriodAnalysisCoordinateType columnType = columnTypes[columnIndex];
    double val = data.get(columnType).get(n);

    return NumericPrecisionPrefs.formatOther(val);
  }
View Full Code Here

Examples of org.aavso.tools.vstar.util.period.PeriodAnalysisCoordinateType

   * @see javax.swing.table.TableModel#getValueAt(int, int)
   */
  public Object getValueAt(int rowIndex, int columnIndex) {
    // column: coordinate type (freq, period, power, ampl[, selected])
    // row: value within the chosen coordinate's list
    PeriodAnalysisCoordinateType columnType = columnTypes[columnIndex];
    double val = data.get(columnType).get(rowIndex);

    return NumericPrecisionPrefs.formatOther(val);
  }
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.