Package org.springframework.rules.closure.support

Examples of org.springframework.rules.closure.support.IfBlock


  public Closure chain(Closure[] functionsToChain) {
    return new ClosureChain(functionsToChain);
  }

  public Closure ifTrue(Constraint constraint, Closure closure) {
    return new IfBlock(constraint, closure);
  }
View Full Code Here

TOP

Related Classes of org.springframework.rules.closure.support.IfBlock

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.