Package org.activiti.engine.history

Examples of org.activiti.engine.history.HistoricData


      .singleResult();
    List<HistoricData> events = log.getHistoricData();
    assertEquals(5, events.size());
   
    for (int i=0; i<5; i++) {
      HistoricData event = events.get(i);
      if (i<2) { // tasks are created before comments
        assertTrue(event instanceof HistoricTaskInstance);
      } else {
        assertTrue(event instanceof Comment);
      }
View Full Code Here

TOP

Related Classes of org.activiti.engine.history.HistoricData

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.