Package org.jbpm.pvm.internal.history.events

Examples of org.jbpm.pvm.internal.history.events.ActivityStart


  public void historyDecision(String transitionName) {
    HistoryEvent.fire(new DecisionEnd(transitionName), this);
  }
 
  public void historyActivityStart() {
    HistoryEvent.fire(new ActivityStart(), this);
  }
View Full Code Here


  public void historyDecision(String transitionName) {
    HistoryEvent.fire(new DecisionEnd(transitionName), this);
  }
 
  public void historyActivityStart() {
    HistoryEvent.fire(new ActivityStart(), this);
  }
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.history.events.ActivityStart

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.