Package org.woped.core.model.bpel

Examples of org.woped.core.model.bpel.BpelVariableList


  public int getActivButton() {
    return this.activbutton;
  }

  public boolean isInputOk() {
    BpelVariableList list = this._editor.getEditor().getModelProcessor()
        .getElementContainer().getVariableList();
    if(this.VariableName.getText().length() == 0)
    {
      new PopUpDialog(this,true,"Fehler","Keinen Variablenamen eingeben!").setVisible(true);
      return false;
    }
    if(list.findBpelVaraibleByName(this.VariableName.getText()) != null)
    {
      new PopUpDialog(this,true,"Fehler", "Fehler: Die zu erstellende Bpel-Variable existiert bereits!").setVisible(true);
      return false;
    }
    return true;
View Full Code Here

TOP

Related Classes of org.woped.core.model.bpel.BpelVariableList

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.