Examples of ObservationDetailsDialog


Examples of org.aavso.tools.vstar.ui.dialog.ObservationDetailsDialog

      int series = entity.getSeriesIndex();
      int item = entity.getItem();
      lastObSelected = obsModel.getValidObservation(series, item);

      if (event.getTrigger().getClickCount() == 2) {
        new ObservationDetailsDialog(lastObSelected);
      }
    } else {
      // ...else if not XYItemEntity as subject of the event, select a
      // valid observation by asking: which XYItemEntity is closest to the
      // cross hairs?
View Full Code Here

Examples of org.aavso.tools.vstar.ui.dialog.ObservationDetailsDialog

          modelSelectionMessage.getModel()).getLastObSelected();
      break;
    }

    if (ob != null) {
      new ObservationDetailsDialog(ob);
    } else {
      MessageBox.showWarningDialog("Observation Details",
          "No observation selected");
    }
  }
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.