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

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


  public void historyActivityStart() {
    HistoryEvent.fire(new ActivityStart(), this);
  }

  public void historyActivityEnd() {
    HistoryEvent.fire(new ActivityEnd(), this);
  }
View Full Code Here


  public void historyActivityEnd() {
    HistoryEvent.fire(new ActivityEnd(), this);
  }

  public void historyActivityEnd(String transitionName) {
    HistoryEvent.fire(new ActivityEnd(transitionName), this);
  }
View Full Code Here

  public void historyActivityStart() {
    HistoryEvent.fire(new ActivityStart(), this);
  }

  public void historyActivityEnd() {
    HistoryEvent.fire(new ActivityEnd(), this);
  }
View Full Code Here

  public void historyActivityEnd() {
    HistoryEvent.fire(new ActivityEnd(), this);
  }

  public void historyActivityEnd(String transitionName) {
    HistoryEvent.fire(new ActivityEnd(transitionName), this);
  }
View Full Code Here

TOP

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

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.