Uses of Class
org.jbpm.graph.def.Transition

Packages that use Transition
org.jbpm.graph.def contains all structural elements of a process graph. 
org.jbpm.graph.exe contains the runtime structures for process executions. 
org.jbpm.graph.log graph execution logs. 
org.jbpm.graph.node contains basic node implementations. 
org.jbpm.jpdl.xml jpdl xml parsing. 
org.jbpm.taskmgmt.exe extensions of runtime process instance data structure for tasks. 
 

Uses of Transition in org.jbpm.graph.def
 

Methods in org.jbpm.graph.def that return Transition
 Transition Node.addArrivingTransition(Transition arrivingTransition)
          add a bidirection relation between this node and the given arriving transition.
 Transition Node.addLeavingTransition(Transition leavingTransition)
          creates a bidirection relation between this node and the given leaving transition.
 Transition Node.getDefaultLeavingTransition()
          is the default leaving transition.
 Transition Node.getLeavingTransition(java.lang.String transitionName)
          retrieves a leaving transition by name. the leaving transitions of the supernode are taken into account as well.
 

Methods in org.jbpm.graph.def with parameters of type Transition
 Transition Node.addArrivingTransition(Transition arrivingTransition)
          add a bidirection relation between this node and the given arriving transition.
 Transition Node.addLeavingTransition(Transition leavingTransition)
          creates a bidirection relation between this node and the given leaving transition.
 void Node.leave(ExecutionContext executionContext, Transition transition)
          called by the implementation of this node to continue execution over the given transition.
 void Node.removeArrivingTransition(Transition arrivingTransition)
          removes the bidirection relation between this node and the given arriving transition.
 void Node.removeLeavingTransition(Transition leavingTransition)
          removes the bidirectional relation between this node and the given leaving transition.
 

Uses of Transition in org.jbpm.graph.exe
 

Fields in org.jbpm.graph.exe declared as Transition
protected  Transition ExecutionContext.transition
           
 

Methods in org.jbpm.graph.exe that return Transition
 Transition ExecutionContext.getTransition()
           
 

Methods in org.jbpm.graph.exe with parameters of type Transition
 void ExecutionContext.leaveNode(Transition transition)
          leave this node over the given transition.
 void ExecutionContext.setTransition(Transition transition)
           
 void ProcessInstance.signal(Transition transition)
          instructs the main path of execution to continue by taking the specified transition on the current node.
 void Token.signal(Transition transition)
          sends a signal to this token. leaves the current node over the given transition.
 

Uses of Transition in org.jbpm.graph.log
 

Fields in org.jbpm.graph.log declared as Transition
protected  Transition SignalLog.transition
           
protected  Transition TransitionLog.transition
           
 

Methods in org.jbpm.graph.log that return Transition
 Transition SignalLog.getTransition()
           
 Transition TransitionLog.getTransition()
           
 

Constructors in org.jbpm.graph.log with parameters of type Transition
SignalLog(Transition transition)
           
TransitionLog(Transition transition, Node source)
           
 

Uses of Transition in org.jbpm.graph.node
 

Methods in org.jbpm.graph.node that return Transition
 Transition StartState.addArrivingTransition(Transition t)
           
 Transition EndState.addLeavingTransition(Transition t)
           
 Transition Decision.addLeavingTransition(Transition leavingTransition)
           
 Transition InterleaveEnd.getBack()
           
 Transition InterleaveEnd.getDone()
           
 

Methods in org.jbpm.graph.node with parameters of type Transition
 Transition StartState.addArrivingTransition(Transition t)
           
 Transition EndState.addLeavingTransition(Transition t)
           
 Transition Decision.addLeavingTransition(Transition leavingTransition)
           
 void ProcessState.leave(ExecutionContext executionContext, Transition transition)
           
 void TaskNode.leave(ExecutionContext executionContext, Transition transition)
           
 void InterleaveEnd.setBack(Transition back)
           
 void InterleaveEnd.setDone(Transition done)
           
 

Uses of Transition in org.jbpm.jpdl.xml
 

Methods in org.jbpm.jpdl.xml that return Transition
 Transition JpdlXmlReader.resolveTransitionDestination(org.dom4j.Element transitionElement, Node node)
          creates the transition object and configures it by the read attributes
 

Uses of Transition in org.jbpm.taskmgmt.exe
 

Methods in org.jbpm.taskmgmt.exe with parameters of type Transition
 void TaskInstance.cancel(Transition transition)
          cancels this task, takes the specified transition.
 void TaskInstance.end(Transition transition)
          marks this task as done and specifies a transition leaving the task-node for the case that the completion of this task instances triggers a signal on the token.
 



Copyright © 2010 JBoss Community. All Rights Reserved.