Examples of WaitDialog


Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

   * @param parent
   */
  public S3Downloader(XBayaEngine engine, JDialog parent) {
    this.engine = engine;
    this.parent = parent;
    this.loadingDialog = new WaitDialog(this, "Downloading file from S3.", "Downloading file from S3.\n" + "Please wait for a moment.", this.engine);
  }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

   * @param parent
   */
  public S3Uploader(XBayaEngine engine, JDialog parent) {
    this.engine = engine;
    this.parent = parent;
    this.loadingDialog = new WaitDialog(this, "Uploading file to S3.", "Uploading file to S3.\n" + "Please wait for a moment.", this.engine);
  }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

   * @param parent
   */
  public BucketsLoader(XBayaEngine engine, JDialog parent) {
    this.engine = engine;
    this.parent = parent;
    this.loadingDialog = new WaitDialog(this, "Loading S3 Buckets.", "Loading S3 Buckets.\n" + "Please wait for a moment.", this.engine);
  }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

   * @param parent
   */
  public InstancesLoader(XBayaEngine engine, JDialog parent) {
    this.engine = engine;
    this.parent = parent;
    this.loadingDialog = new WaitDialog(this, "Loading EC2 Instances.", "Loading EC2 Instances.\n" + "Please wait for a moment.", this.engine);
  }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

     * @param client
     */
    public MyLeadSaver(XBayaEngine client) {
        this.engine = client;

        this.savingDialog = new WaitDialog(this, "Saving the Workflow.",
                "Saving the Workflow. " + "Please wait for a moment.",
                this.engine);
    }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

     * @param redeploy
     * @param workflow
     */
    private void runInThread(boolean redeploy, Workflow workflow) {
        try {
          WaitDialog waitDialog = new WaitDialog(this, "Deploying the Workflow.",
            "Deploying the Workflow." + "Please wait for a moment.",
            this.engine);
            GSSCredential proxy = this.engine.getMyProxyClient().getProxy();
            ODEDeploymentWindow odeDeployment = new ODEDeploymentWindow();
            final WorkflowProxyClient client = new WorkflowProxyClient();
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

     */
    public MyLeadLoader(XBayaEngine client, MyLead connection) {
        this.engine = client;
        this.myLead = connection;

        this.loadingDialog = new WaitDialog(this, "Loading the Workflow.",
                "Loading the Workflow. " + "Please wait for a moment.",
                this.engine);
    }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog

    this.dialog = new XBayaDialog(this.engine,
        "Deploy workflow to ODE and XRegistry", mainPanel, buttonPanel);
    this.dialog.setDefaultButton(this.deploy);

    this.invokingDialog = new WaitDialog(this, "Deploying the Workflow.",
        "Deploying the Workflow." + "Please wait for a moment.",
        this.engine);
  }
View Full Code Here

Examples of org.apache.airavata.xbaya.gui.WaitDialog

     * @param parent
     */
    public BucketsLoader(XBayaEngine engine, JDialog parent) {
        this.engine = engine;
        this.parent = parent;
        this.loadingDialog = new WaitDialog(this, "Loading S3 Buckets.", "Loading S3 Buckets.\n"
                + "Please wait for a moment.", this.engine);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.WaitDialog

        }
      }
      break;
    case EXECUTION_TASK_START:
      TaskNotification task = (TaskNotification) data;
      final WaitDialog waitDialog = new WaitDialog(new Cancelable() {
        @Override
        public void cancel() {
          // Do nothing
        }
      }, task.messageTitle, task.message, this.xbayaGUI);
      new Thread(new Runnable() {
        @Override
        public void run() {
          waitDialog.show();
        }
      }).start();
      taskDialogs.put(task.messageId, waitDialog);
      break;
    case EXECUTION_TASK_END:
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.