|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use TransitionImpl | |
|---|---|
| org.jbpm.pvm.internal.builder | |
| org.jbpm.pvm.internal.model | default implementation of process execution in ExecutionImpl
based on org.jbpm.pvm.internal.model.AtomicOperations
Bidirectional relations
In this process model thoughout the pvm codebase, there are several bidirectional
relations. |
| Uses of TransitionImpl in org.jbpm.pvm.internal.builder |
|---|
| Fields in org.jbpm.pvm.internal.builder declared as TransitionImpl | |
|---|---|
protected TransitionImpl |
FlowBuilder.transition
|
| Constructors in org.jbpm.pvm.internal.builder with parameters of type TransitionImpl | |
|---|---|
FlowBuilder(ActivityBuilder activityBuilder,
TransitionImpl transition)
|
|
| Uses of TransitionImpl in org.jbpm.pvm.internal.model |
|---|
| Subclasses of TransitionImpl in org.jbpm.pvm.internal.model | |
|---|---|
static class |
ProcessModificationsImpl.AddedTransition
|
| Fields in org.jbpm.pvm.internal.model declared as TransitionImpl | |
|---|---|
protected TransitionImpl |
ActivityImpl.defaultOutgoingTransition
|
protected TransitionImpl |
ExecutionImpl.transition
transition is not to be made persistable by default |
| Fields in org.jbpm.pvm.internal.model with type parameters of type TransitionImpl | |
|---|---|
protected java.util.List<TransitionImpl> |
ActivityImpl.incomingTransitions
|
protected java.util.List<TransitionImpl> |
ActivityImpl.outgoingTransitions
|
protected java.util.Map<java.lang.String,TransitionImpl> |
ActivityImpl.outgoingTransitionsMap
|
protected java.util.List<TransitionImpl> |
ProcessModificationsImpl.removedTransitions
|
| Methods in org.jbpm.pvm.internal.model that return TransitionImpl | |
|---|---|
TransitionImpl |
ActivityImpl.createOutgoingTransition()
creates an outgoing transition from this activity. |
protected TransitionImpl |
ExecutionImpl.findDefaultTransition()
|
TransitionImpl |
ActivityImpl.findDefaultTransition()
searches for the default transition in this activity and then up the parent chain. |
TransitionImpl |
ActivityImpl.findOutgoingTransition(java.lang.String transitionName)
searches for the given transitionName in this activity and then up the parent chain. |
protected TransitionImpl |
ExecutionImpl.findTransition(java.lang.String transitionName)
by default this will use ActivityImpl.findOutgoingTransition(String) to
search for the outgoing transition, which includes a search over the parent chain
of the current activity. |
TransitionImpl |
ActivityImpl.getDefaultOutgoingTransition()
|
TransitionImpl |
ProcessModificationsImpl.getOutgoingTransition(ActivityImpl activity,
java.lang.String transitionName)
|
TransitionImpl |
ActivityImpl.getOutgoingTransition(java.lang.String transitionName)
the first leaving transition with the given name or null of no such leaving transition exists. |
TransitionImpl |
ExecutionImpl.getTransition()
|
| Methods in org.jbpm.pvm.internal.model with parameters of type TransitionImpl | |
|---|---|
Transition |
ActivityImpl.addIncomingTransition(TransitionImpl transition)
adds the given transition as an arriving transition to this activity. |
Transition |
ActivityImpl.addOutgoingTransition(TransitionImpl transition)
adds the given transition as a leaving transition to this activity. |
boolean |
ActivityImpl.removeIncomingTransition(TransitionImpl transition)
removes the given transition if it is contained in the arriving transitions of this activity. |
boolean |
ActivityImpl.removeOutgoingTransition(TransitionImpl transition)
removes the given transition from the leaving transitions. |
void |
ActivityImpl.setDefaultOutgoingTransition(TransitionImpl defaultOutgoingTransition)
|
void |
ExecutionImpl.setTransition(TransitionImpl transition)
|
| Method parameters in org.jbpm.pvm.internal.model with type arguments of type TransitionImpl | |
|---|---|
void |
ActivityImpl.setIncomingTransitions(java.util.List<TransitionImpl> incomingTransitions)
sets the incomingTransitions to the given list of incomingTransitions. |
void |
ActivityImpl.setOutgoingTransitions(java.util.List<TransitionImpl> outgoingTransitions)
sets the outgoingTransitions to the given list of outgoingTransitions. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||