Package org.jbpm.graph.log

Examples of org.jbpm.graph.log.NodeLog


    transition.take(executionContext);
  }

  protected void addNodeLog(Token token)
  {
    token.addLog(new NodeLog(this, token.getNodeEnter(), Clock.getCurrentTime()));
  }
View Full Code Here


    // fire the leave-node event for this node
    fireEvent(Event.EVENTTYPE_NODE_LEAVE, executionContext);
   
    // log this node
    if (token.getNodeEnter()!=null) {
      token.addLog(new NodeLog(this, token.getNodeEnter(), new Date()));
    }

    // update the runtime information for taking the transition
    // the transitionSource is used to calculate events on superstates
    executionContext.setTransitionSource(this);
View Full Code Here

    // take the transition
    transition.take(executionContext);
  }

  protected void addNodeLog(Token token) {
    token.addLog(new NodeLog(this, token.getNodeEnter(), new Date()));
  }
View Full Code Here

    // take the transition
    transition.take(executionContext);
  }

  protected void addNodeLog(Token token) {
    token.addLog(new NodeLog(this, token.getNodeEnter(), Clock.getCurrentTime()));
  }
View Full Code Here

TOP

Related Classes of org.jbpm.graph.log.NodeLog

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.