Package org.jbpm.graph.exe

Examples of org.jbpm.graph.exe.Comment


  }

  // comments /////////////////////////////////////////////////////////////////

  public void addComment(String message) {
    addComment(new Comment(message));
  }
View Full Code Here


    taskInstance = taskMgmtSession.loadTaskInstance(taskInstance.getId());
   
    List comments = taskInstance.getComments();
    assertEquals(1, comments.size());
   
    Comment comment = (Comment) comments.get(0);
    assertEquals("please hurry!", comment.getMessage());
    assertSame(taskInstance, comment.getTaskInstance());
  }
View Full Code Here

  }
 
  // comments /////////////////////////////////////////////////////////////////

  public void addComment(String message) {
    addComment(new Comment(message));
  }
View Full Code Here

  }
 
  // comments /////////////////////////////////////////////////////////////////

  public void addComment(String message) {
    addComment(new Comment(message));
  }
View Full Code Here

  }
 
  // comments /////////////////////////////////////////////////////////////////

  public void addComment(String message) {
    addComment(new Comment(message));
  }
View Full Code Here

TOP

Related Classes of org.jbpm.graph.exe.Comment

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.