Package org.aavso.tools.vstar.ui.pane.plot

Examples of org.aavso.tools.vstar.ui.pane.plot.TimeElementsInBinSettingPane


   */
  public void showPlotControlDialog() {
    String title = null;
    ObservationAndMeanPlotPane plotPane = analysisTypeMap.get(analysisType)
        .getObsAndMeanChartPane();
    TimeElementsInBinSettingPane binSettingPane = null;
    NamedComponent extra = null;

    if (analysisType == AnalysisType.RAW_DATA) {
      title = LocaleProps.get("LIGHT_CURVE_CONTROL_DLG_TITLE");
      binSettingPane = new TimeElementsInBinSettingPane(LocaleProps
          .get("DAYS_PER_MEAN_SERIES_BIN"), plotPane,
          JDTimeElementEntity.instance);
    } else if (analysisType == AnalysisType.PHASE_PLOT) {
      title = LocaleProps.get("PHASE_PLOT_CONTROL_DLG_TITLE");
      binSettingPane = new TimeElementsInBinSettingPane(LocaleProps
          .get("PHASE_STEPS_PER_MEAN_SERIES_BIN"), plotPane,
          PhaseTimeElementEntity.instance);
    }

    PlotControlDialog dialog = new PlotControlDialog(title, plotPane,
View Full Code Here

TOP

Related Classes of org.aavso.tools.vstar.ui.pane.plot.TimeElementsInBinSettingPane

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.