Package org.apache.airavata.xbaya.ui.dialogs

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


     * @param engine
     */
    private ComponentRegistryLoader(XBayaEngine engine) {
        this.setEngine(engine);

        this.loadingDialog = new WaitDialog(this, "Loading a Component List.", "Loading a Component List. "
                + "Please wait for a moment.", this.getEngine().getGUI());
        getEngine().getConfiguration().addObserver(this);
    }
View Full Code Here

     * @param engine
     */
    private ComponentRegistryLoader(XBayaEngine engine) {
        this.setEngine(engine);

        this.loadingDialog = new WaitDialog(this, "Loading a Component List.", "Loading a Component List. "
                + "Please wait for a moment.", this.getEngine().getGUI());
        getEngine().getConfiguration().addObserver(this);
    }
View Full Code Here

        }
      }
      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

    private WaitDialog invokingDialog;

    public ODEInvoker(XBayaEngine engine) {
        this.engine = engine;

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

        }
      }
      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

     * @param engine
     */
    private ComponentRegistryLoader(XBayaEngine engine) {
        this.setEngine(engine);

        this.loadingDialog = new WaitDialog(this, "Loading a Component List.", "Loading a Component List. "
                + "Please wait for a moment.", this.getEngine().getGUI());
        getEngine().getConfiguration().addObserver(this);
    }
View Full Code Here

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

        this.waitDialog = new WaitDialog(this, "Loading Proxy", "Loading a proxy.\n" + "Please wait for a moment.",
                this.engine.getGUI());
    }
View Full Code Here

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

        this.startingDialog = new WaitDialog(this, "Starting Monitoring", "Subscribing to notification.\n"
                + "Please wait for a moment.", this.engine.getGUI());
    }
View Full Code Here

     * @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.getGUI());
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.xbaya.ui.dialogs.WaitDialog

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.