Examples of DiscrepantObservationMessage


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

        // Toggle "is-discrepant" checkbox and value.
        ValidObservation ob = this.validObservations.get(rowIndex);
        boolean discrepant = ob.isDiscrepant();
        ob.setDiscrepant(!discrepant);
        // Tell anyone who's listening about the change.
        DiscrepantObservationMessage message = new DiscrepantObservationMessage(
            ob, this);
        Mediator.getInstance().getDiscrepantObservationNotifier()
            .notifyListeners(message);

        Mediator.getInstance().reportDiscrepantObservation(ob, null);
View Full Code Here

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

        // for more detail.
        if (Mediator.getInstance().getAnalysisType() == AnalysisType.RAW_DATA) {
          // Toggle the observation's discrepant status and
          // tell anyone who's listening about the change.
          toggleDiscrepantStatus();
          DiscrepantObservationMessage message = new DiscrepantObservationMessage(
              ob, parent);
          Mediator.getInstance().getDiscrepantObservationNotifier()
              .notifyListeners(message);

          // If the loaded dataset comes from AID, open report-to-HQ
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.