Package com.catify.processengine.core.processdefinition.jaxb

Examples of com.catify.processengine.core.processdefinition.jaxb.TExpression


   *
   * @param sequenceFlow
   * @return
   */
  private String getConditionalExpressionString(TSequenceFlow sequenceFlow) {
    TExpression expression = sequenceFlow.getConditionExpression();
    if (expression != null) {
      // we assume, that there's only one expression per node
      return (String) expression.getContent().get(0);
    }

    return null;
  }
View Full Code Here

TOP

Related Classes of com.catify.processengine.core.processdefinition.jaxb.TExpression

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.