Package org.aavso.tools.vstar.ui.task

Examples of org.aavso.tools.vstar.ui.task.ObsListFileSaveTask


        this.getProgressNotifier()
            .notifyListeners(
                new ProgressInfo(ProgressType.MAX_PROGRESS, obs
                    .size()));

        ObsListFileSaveTask task = new ObsListFileSaveTask(obs, path,
            this.getLatestNewStarMessage().getNewStarType(),
            delimiter);

        this.currTask = task;
        task.execute();
      } else {
        MessageBox.showMessageDialog(parent, "Save Observations",
            "There are no visible observations to save.");
      }
    } else {
View Full Code Here


          this.getProgressNotifier().notifyListeners(
              new ProgressInfo(ProgressType.MAX_PROGRESS, obs
                  .size()));

          ObsListFileSaveTask task = new ObsListFileSaveTask(obs,
              outFile, this.getLatestNewStarMessage()
                  .getNewStarType(), obsListFileSaveDialog
                  .getDelimiter());

          this.currTask = task;
          task.execute();
        }
      } else {
        MessageBox.showMessageDialog(parent, "Save Observations",
            "There are no visible observations to save.");
      }
View Full Code Here

          // We re-use the same observation list file save task as
          // above but specify simple file type to match the fact that
          // we are only going to save JD, magnitude, and uncertainty
          // (for
          // means).
          ObsListFileSaveTask task = new ObsListFileSaveTask(obs,
              outFile, NewStarType.NEW_STAR_FROM_SIMPLE_FILE,
              obsListFileSaveDialog.getDelimiter());

          this.currTask = task;
          task.execute();
        }
      } else {
        MessageBox.showMessageDialog(parent, "Save Observations",
            "There are no visible observations to save.");
      }
View Full Code Here

TOP

Related Classes of org.aavso.tools.vstar.ui.task.ObsListFileSaveTask

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.