Package org.aavso.tools.vstar.ui.dialog

Examples of org.aavso.tools.vstar.ui.dialog.StarSelectorDialog.showDialog()


          // Prompt user for star and JD range selection.
          Mediator.getUI().getStatusPane().setMessage(
              LocaleProps.get("STATUS_PANE_SELECT_STAR"));
          StarSelectorDialog starSelectorDialog = StarSelectorDialog
              .getInstance();
          starSelectorDialog.showDialog();

          if (!starSelectorDialog.isCancelled()) {
            String starName = starSelectorDialog.getStarName();
            String auid = starSelectorDialog.getAuid();
            double minJD, maxJD;
View Full Code Here


  @Override
  public List<URL> getURLs() throws Exception {
    List<URL> urls = null;

    StarSelectorDialog dialog = StarSelectorDialog.getInstance();
    dialog.showDialog();

    if (!dialog.isCancelled()) {
      String urlStr = "http://test.aavso.org/apps/api/aid/observation";

      if (!dialog.wantAllData()) {
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.