Uses of Class
org.eclipse.emf.mwe.ewm.workflow.runtime.state.WorkflowState

Packages that use WorkflowState
org.eclipse.emf.mwe.ewm.workflow   
org.eclipse.emf.mwe.ewm.workflow.runtime   
org.eclipse.emf.mwe.ewm.workflow.runtime.state   
org.eclipse.emf.mwe.ewm.workflow.runtime.state.util   
org.eclipse.emf.mwe.ewm.workflow.runtime.util   
org.eclipse.emf.mwe.ewm.workflow.runtime.validation   
org.eclipse.emf.mwe.ewm.workflow.transaction.runtime   
org.eclipse.emf.mwe.ewm.workflow.transaction.runtime.commands   
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow
 

Methods in org.eclipse.emf.mwe.ewm.workflow that return WorkflowState
abstract  WorkflowState WorkflowComponent.run(WorkflowContext context)
          Clients must override this function to perform the work of the workflow component.
 WorkflowState WorkflowComponentProxy.run(WorkflowContext context)
           
 WorkflowState WorkflowCompositeComponent.run(WorkflowContext context)
          Runs each of the composite's children using the supplied composite orchestration strategy.
abstract  WorkflowState WorkflowUnitOfWork.run(WorkflowContext context)
           
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.runtime
 

Fields in org.eclipse.emf.mwe.ewm.workflow.runtime declared as WorkflowState
protected  WorkflowState WorkflowStateMap.value
          The cached value of the 'Value' containment reference.
 

Fields in org.eclipse.emf.mwe.ewm.workflow.runtime with type parameters of type WorkflowState
protected  org.eclipse.emf.common.util.EMap<WorkflowComponent,WorkflowState> WorkflowContext.states
          The cached value of the 'States' map.
 

Methods in org.eclipse.emf.mwe.ewm.workflow.runtime that return WorkflowState
 WorkflowState WorkflowContext.getState(WorkflowComponent component)
           
 WorkflowState WorkflowStateMap.getTypedValue()
          Returns the value of the 'Value' containment reference.
 WorkflowState WorkflowStateMap.getValue()
           
 WorkflowState WorkflowStateResolutionStrategy.resolve(WorkflowCompositeComponent workflow, WorkflowContext context)
           
 WorkflowState WorkflowStateMap.setValue(WorkflowState value)
           
 

Methods in org.eclipse.emf.mwe.ewm.workflow.runtime that return types with arguments of type WorkflowState
 java.util.Map.Entry<WorkflowComponent,WorkflowState> RuntimeFactory.createWorkflowStateMap()
           
 org.eclipse.emf.common.util.EMap<WorkflowComponent,WorkflowState> WorkflowStateMap.getEMap()
           
 org.eclipse.emf.common.util.EMap<WorkflowComponent,WorkflowState> WorkflowContext.getStates()
          Returns the value of the 'States' map.
 

Methods in org.eclipse.emf.mwe.ewm.workflow.runtime with parameters of type WorkflowState
 org.eclipse.emf.common.notify.NotificationChain WorkflowStateMap.basicSetTypedValue(WorkflowState newValue, org.eclipse.emf.common.notify.NotificationChain msgs)
           
 void WorkflowContext.setState(WorkflowComponent component, WorkflowState state)
           
 void WorkflowStateMap.setTypedValue(WorkflowState newValue)
          Sets the value of the 'Value' containment reference.
 WorkflowState WorkflowStateMap.setValue(WorkflowState value)
           
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.runtime.state
 

Subclasses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.runtime.state
 class WorkflowDoneState
          A representation of the model object 'Done State'.
 class WorkflowErrorState
          A representation of the model object 'Error State'.
 class WorkflowFailedState
          A representation of the model object 'Failed State'.
 class WorkflowIdleState
          A representation of the model object 'Idle State'.
 class WorkflowRunningState
          A representation of the model object 'Running State'.
 class WorkflowSkippedState
          A representation of the model object 'Workflow Skipped State'.
 class WorkflowSuccessState
          A representation of the model object 'Success State'.
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.runtime.state.util
 

Methods in org.eclipse.emf.mwe.ewm.workflow.runtime.state.util with parameters of type WorkflowState
 T StateSwitch.caseWorkflowState(WorkflowState object)
          Returns the result of interpreting the object as an instance of 'Workflow State'.
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.runtime.util
 

Method parameters in org.eclipse.emf.mwe.ewm.workflow.runtime.util with type arguments of type WorkflowState
 T RuntimeSwitch.caseWorkflowStateMap(java.util.Map.Entry<WorkflowComponent,WorkflowState> object)
          Returns the result of interpreting the object as an instance of 'Workflow State Map'.
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.runtime.validation
 

Methods in org.eclipse.emf.mwe.ewm.workflow.runtime.validation with parameters of type WorkflowState
 boolean WorkflowStateMapValidator.validateTypedValue(WorkflowState value)
           
 

Method parameters in org.eclipse.emf.mwe.ewm.workflow.runtime.validation with type arguments of type WorkflowState
 boolean WorkflowContextValidator.validateStates(org.eclipse.emf.common.util.EMap<WorkflowComponent,WorkflowState> value)
           
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.transaction.runtime
 

Methods in org.eclipse.emf.mwe.ewm.workflow.transaction.runtime that return WorkflowState
 WorkflowState WorkflowTransactionalContext.getState(WorkflowComponent component)
           
 

Methods in org.eclipse.emf.mwe.ewm.workflow.transaction.runtime with parameters of type WorkflowState
 void WorkflowTransactionalContext.setState(WorkflowComponent component, WorkflowState state)
           
 

Uses of WorkflowState in org.eclipse.emf.mwe.ewm.workflow.transaction.runtime.commands
 

Constructors in org.eclipse.emf.mwe.ewm.workflow.transaction.runtime.commands with parameters of type WorkflowState
WorkflowSetStateCommand(WorkflowTransactionalContext context, WorkflowComponent component, WorkflowState state)