Package com.starflow.wf.engine.core.expression

Examples of com.starflow.wf.engine.core.expression.SimpleExpressionHandler


import com.starflow.wf.engine.core.expression.SimpleExpressionHandler;

public class ExpressionHandlerFactory {
  public static IExpressionHandler buildExpressionHandler(Boolean isSimpleExpression) {
    if(isSimpleExpression)
      return new SimpleExpressionHandler();
    else
      return new ComplexExpressionHandler();
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.expression.SimpleExpressionHandler

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.