Package com.microworkflow.process

Examples of com.microworkflow.process.Primitive


  public static Test suite() {
    return new TestSuite(TestIterative.class);
  }

  public void testIterative() {
    Primitive body=new Primitive("component", new Performer(){
      public Object execute() {
        String component=(String)getTarget();
        DomainObject domainObject=(DomainObject)get(O1_KEY);
        if (domainObject.getString() != null) {
          domainObject.setString(domainObject.getString().concat(component));
View Full Code Here

TOP

Related Classes of com.microworkflow.process.Primitive

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.