Uses of Class
org.ow2.bonita.pvm.internal.model.ExecutionImpl

Packages that use ExecutionImpl
org.ow2.bonita.pvm.internal.job   
org.ow2.bonita.pvm.internal.model   
org.ow2.bonita.pvm.internal.model.op   
org.ow2.bonita.pvm.internal.type   
org.ow2.bonita.pvm.processlog   
org.ow2.bonita.pvm.test.base   
 

Uses of ExecutionImpl in org.ow2.bonita.pvm.internal.job
 

Fields in org.ow2.bonita.pvm.internal.job declared as ExecutionImpl
protected  ExecutionImpl JobImpl.execution
          the execution (if any) for this jobImpl
protected  ExecutionImpl JobImpl.processInstance
          the process instance
 

Methods in org.ow2.bonita.pvm.internal.job that return ExecutionImpl
 ExecutionImpl JobImpl.getExecution()
           
 ExecutionImpl JobImpl.getProcessInstance()
           
 

Methods in org.ow2.bonita.pvm.internal.job with parameters of type ExecutionImpl
 void JobImpl.setExecution(ExecutionImpl execution)
           
 

Constructors in org.ow2.bonita.pvm.internal.job with parameters of type ExecutionImpl
MessageImpl(ExecutionImpl execution)
           
 

Uses of ExecutionImpl in org.ow2.bonita.pvm.internal.model
 

Fields in org.ow2.bonita.pvm.internal.model declared as ExecutionImpl
protected  ExecutionImpl ExceptionHandlerSynchronization.execution
           
protected  ExecutionImpl ExecutionImpl.parent
          the parent child relation of executions is convenient for some forms of concurrency.
protected  ExecutionImpl ExecutionImpl.processInstance
           
protected  ExecutionImpl ExecutionImpl.subProcessInstance
          the sub process link in case of sub process execution
protected  ExecutionImpl ExecutionImpl.superProcessExecution
          the super process link in case this is a sub process execution
 

Fields in org.ow2.bonita.pvm.internal.model with type parameters of type ExecutionImpl
protected  java.util.Collection<ExecutionImpl> ExecutionImpl.executions
          are concurrent executions that related to this execution.
 

Methods in org.ow2.bonita.pvm.internal.model that return ExecutionImpl
 ExecutionImpl ExecutionImpl.beginNode(NodeImpl node)
           
 ExecutionImpl ExecutionImpl.createExecution()
           
 ExecutionImpl ExecutionImpl.createExecution(java.lang.String name)
           
 ExecutionImpl ExecutionImpl.createScope(CompositeElementImpl scope)
           
 ExecutionImpl ExecutionImpl.destroyScope(CompositeElementImpl scope)
           
 ExecutionImpl ExecutionImpl.endNode(NodeImpl node)
           
 ExecutionImpl ExecutionImpl.getExecution(java.lang.String name)
           
 ExecutionImpl ExecutionImpl.getParent()
           
 ExecutionImpl ExecutionImpl.getProcessInstance()
           
 ExecutionImpl ExecutionImpl.getSubProcessInstance()
           
 ExecutionImpl ExecutionImpl.getSuperProcessExecution()
           
protected  ExecutionImpl ExecutionImpl.initializeScopes()
           
protected  ExecutionImpl ExecutionImpl.newChildExecution()
           
protected  ExecutionImpl PVMProcessDefinitionImpl.newProcessInstance()
           
 

Methods in org.ow2.bonita.pvm.internal.model with parameters of type ExecutionImpl
protected  void ExecutionImpl.destroyVariables(CompositeElementImpl scope, ExecutionImpl outerExecution)
           
 java.lang.Object VariableDefinitionImpl.getDestinationValue(ExecutionImpl execution)
           
 java.lang.Object VariableDefinitionImpl.getSourceValue(ExecutionImpl execution)
           
 void ExceptionHandlerImpl.handle(ExecutionImpl execution, java.lang.Exception exception)
           
protected  void ExecutionImpl.initializeVariables(CompositeElementImpl scope, ExecutionImpl outerExecution)
           
 void ExecutionImpl.setParent(ExecutionImpl parent)
           
 void ExecutionImpl.setProcessInstance(ExecutionImpl processInstance)
           
 void ExecutionImpl.setSubProcessInstance(ExecutionImpl subProcessExecution)
           
 void ExecutionImpl.setSuperProcessExecution(ExecutionImpl superProcessExecution)
           
 

Method parameters in org.ow2.bonita.pvm.internal.model with type arguments of type ExecutionImpl
 void ExecutionImpl.setExecutions(java.util.Collection<ExecutionImpl> executions)
           
 

Constructors in org.ow2.bonita.pvm.internal.model with parameters of type ExecutionImpl
ExceptionHandlerSynchronization(ExceptionHandlerImpl exceptionHandler, ExecutionImpl execution, java.lang.Exception exception, CommandService commandService)
           
 

Uses of ExecutionImpl in org.ow2.bonita.pvm.internal.model.op
 

Methods in org.ow2.bonita.pvm.internal.model.op with parameters of type ExecutionImpl
 MessageImpl<?> ExecuteNode.createAsyncMessage(ExecutionImpl execution)
           
 MessageImpl<?> Signal.createAsyncMessage(ExecutionImpl execution)
           
 MessageImpl<?> MoveToParentNode.createAsyncMessage(ExecutionImpl execution)
           
 MessageImpl<?> TakeTransition.createAsyncMessage(ExecutionImpl execution)
           
 MessageImpl<?> MoveToChildNode.createAsyncMessage(ExecutionImpl execution)
           
 MessageImpl<?> AtomicOperation.createAsyncMessage(ExecutionImpl execution)
           
 MessageImpl<?> ProceedToDestination.createAsyncMessage(ExecutionImpl execution)
           
 boolean ExecuteNode.isAsync(ExecutionImpl execution)
           
 boolean Signal.isAsync(ExecutionImpl execution)
           
 boolean MoveToParentNode.isAsync(ExecutionImpl execution)
           
 boolean TakeTransition.isAsync(ExecutionImpl execution)
           
 boolean MoveToChildNode.isAsync(ExecutionImpl execution)
           
 boolean AtomicOperation.isAsync(ExecutionImpl execution)
           
 boolean ProceedToDestination.isAsync(ExecutionImpl execution)
           
 void ExecuteNode.perform(ExecutionImpl execution)
           
 void Signal.perform(ExecutionImpl execution)
           
 void MoveToParentNode.perform(ExecutionImpl execution)
           
 void TakeTransition.perform(ExecutionImpl execution)
           
 void MoveToChildNode.perform(ExecutionImpl execution)
           
 void AtomicOperation.perform(ExecutionImpl execution)
           
 void ProceedToDestination.perform(ExecutionImpl execution)
           
 

Constructors in org.ow2.bonita.pvm.internal.model.op with parameters of type ExecutionImpl
ExecuteNodeMessage(ExecutionImpl execution)
           
ProceedToDestinationMessage(ExecutionImpl execution)
           
SignalMessage(ExecutionImpl execution, java.lang.String signalName, NodeImpl node)
           
TakeTransitionMessage(ExecutionImpl execution)
           
 

Uses of ExecutionImpl in org.ow2.bonita.pvm.internal.type
 

Fields in org.ow2.bonita.pvm.internal.type declared as ExecutionImpl
protected  ExecutionImpl Variable.processInstance
           
 

Methods in org.ow2.bonita.pvm.internal.type that return ExecutionImpl
 ExecutionImpl Variable.getProcessInstance()
           
 

Methods in org.ow2.bonita.pvm.internal.type with parameters of type ExecutionImpl
 void Variable.setProcessInstance(ExecutionImpl processInstance)
           
 

Uses of ExecutionImpl in org.ow2.bonita.pvm.processlog
 

Methods in org.ow2.bonita.pvm.processlog with parameters of type ExecutionImpl
 void ProcessLogImpl.setExecution(ExecutionImpl execution)
           
 

Uses of ExecutionImpl in org.ow2.bonita.pvm.test.base
 

Methods in org.ow2.bonita.pvm.test.base that return ExecutionImpl
 ExecutionImpl EnvironmentDbTestCase.reload(Execution execution)
           
 



Copyright © 2009 OW2 Consortium. All Rights Reserved.