Examples of PeriodChangeMessage


Examples of org.aavso.tools.vstar.ui.mediator.message.PeriodChangeMessage

   *            phase plot dialog to be invoked, asking for confirmation of
   *            the new period (and epoch) before creating a new phase plot.
   */
  public void sendPeriodChangeMessage(double period) {
    Mediator.getInstance().getPeriodChangeNotifier().notifyListeners(
        new PeriodChangeMessage(this, period));
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.mediator.message.PeriodChangeMessage

  // analysis selection message has been received by this class,
  // so we *know* without having to ask that there is a selected
  // row in the data table.
  @Override
  protected void newPhasePlotButtonAction() {
    PeriodChangeMessage message = new PeriodChangeMessage(this,
        selectedDataPoint.getPeriod());
    Mediator.getInstance().getPeriodChangeNotifier().notifyListeners(
        message);
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.mediator.message.PeriodChangeMessage

   * selection message has been received, so we *know* without having to ask
   * that there is a selected row in the data table.
   */
  @Override
  protected void newPhasePlotButtonAction() {
    PeriodChangeMessage message = new PeriodChangeMessage(this,
        selectedDataPoint.getPeriod());
    Mediator.getInstance().getPeriodChangeNotifier().notifyListeners(
        message);
  }
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.