Package edu.indiana.extreme.xbaya.wf.gui

Examples of edu.indiana.extreme.xbaya.wf.gui.WorkflowPropertyWindow


  /**
   * @return
   */
  public WorkflowPropertyWindow getWorkflowPropertyWindow() {
    if (this.workflowPropertiesWindow == null) {
      this.workflowPropertiesWindow = new WorkflowPropertyWindow(
          this.engine);
    }
    return this.workflowPropertiesWindow;
  }
View Full Code Here


    final Workflow workflow = this.engine.getWorkflow();

    // Check whether the workflow name is Normalised

    WorkflowPropertyWindow workflowPropertyWindow = this.engine
        .getWorkflowPropertyWindow();

    if (!workflow.getName().equals(
        StringUtil.convertToJavaIdentifier(workflow.getName()))) {
      JOptionPane.showMessageDialog(this.engine.getGUI().getFrame(),
          "Invalid Name. Please consider a valid name.",
          "Invalid Name", JOptionPane.OK_OPTION);

      workflowPropertyWindow.show();
    }
   
    //its just configuring values for saving the files
    //so just return
    if(this.configMode){
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.xbaya.wf.gui.WorkflowPropertyWindow

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.