Examples of PeriodAnalysisDataTableModel


Examples of org.aavso.tools.vstar.ui.model.list.PeriodAnalysisDataTableModel

      }
      dataListMap.put(columnTypes[i], dataList);
    }

    return new PeriodAnalysisDataTablePane(
        new PeriodAnalysisDataTableModel(columnTypes, dataListMap),
        algorithm);
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.model.list.PeriodAnalysisDataTableModel

      PeriodAnalysisCoordinateType[] columnTypes,
      Map<PeriodAnalysisCoordinateType, List<Double>> dataMap,
      IPeriodAnalysisAlgorithm algorithm) {

    return new PeriodAnalysisDataTablePane(
        new PeriodAnalysisDataTableModel(columnTypes, dataMap),
        algorithm);
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.model.list.PeriodAnalysisDataTableModel

    this.seriesTitle = seriesTitle;
    this.chartTitle = title;

    this.algorithm = algorithm;

    dataTableModel = new PeriodAnalysisDataTableModel(DATA_COLUMN_TYPES,
        resultDataMap);
    topHitsTableModel = new PeriodAnalysisDataTableModel(DATA_COLUMN_TYPES,
        algorithm.getTopHits());

    plotModels = new ArrayList<PeriodAnalysis2DPlotModel>();

    // Frequency vs Power
View Full Code Here

Examples of org.aavso.tools.vstar.ui.model.list.PeriodAnalysisDataTableModel

      // button
      // resultsTablePane =
      // PeriodAnalysisComponentFactory.createDataTable(
      // columns, algorithm.getResultSeries(), algorithm);

      PeriodAnalysisDataTableModel resultsModel = new PeriodAnalysisDataTableModel(
          columns, algorithm.getResultSeries());
      resultsTablePane = new NoModelPeriodAnalysisDataTablePane(
          resultsModel, algorithm);

      // Note: algorithm won't be used (?) in this case but we must pass
      // it along. TODO: how do we get top hit squares? See what DCDFT
      // does.
      // TODO: subclass PeriodAnalysisTopHitsTablePane to have no model
      // button
      // topHitsTablePane =
      // PeriodAnalysisComponentFactory.createDataTable(
      // columns, algorithm.getTopHits(), algorithm);

      PeriodAnalysisDataTableModel topHitsModel = new PeriodAnalysisDataTableModel(
          columns, algorithm.getTopHits());
      topHitsTablePane = new NoModelPeriodAnalysisTopHitsTablePane(
          topHitsModel, resultsModel, algorithm);

      // Return tabbed pane of plot and period display component.
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.