Uses of Interface
org.jbpm.api.model.Activity

Packages that use Activity
org.jbpm.api.activity interfaces for implementing activities, which represent the runtime behaviour of activities. 
org.jbpm.api.model common model base classes for the client, activity and event listener API's 
 

Uses of Activity in org.jbpm.api.activity
 

Methods in org.jbpm.api.activity that return Activity
 Activity ActivityExecution.getActivity()
          the current activity.
 

Methods in org.jbpm.api.activity with parameters of type Activity
 void ActivityExecution.execute(Activity activity)
          executes the given activity.
 void ActivityExecution.setActivity(Activity destination)
          position this execution in the destination activity.
 void ActivityExecution.setActivity(Activity destination, Execution execution)
          position the given execution in the destination activity
 

Uses of Activity in org.jbpm.api.model
 

Methods in org.jbpm.api.model that return Activity
 Activity CompositeElement.findActivity(java.lang.String activityName)
          searches for the given activity in this element recursively, including this activity and all child activities.
 Activity CompositeElement.getActivity(java.lang.String activityName)
          the first composite activity with the given name or null of no such activity exists.
 Activity Transition.getDestination()
          the activity in which this transition arrives.
 Activity OpenProcessDefinition.getInitial()
          the initial activity of this process definition
 Activity Activity.getParentActivity()
          retrieve the parent activity in the composite activity structure.
 Activity Transition.getSource()
          the activity from which this transition leaves.
 

Methods in org.jbpm.api.model that return types with arguments of type Activity
 java.util.List<Activity> CompositeElement.getActivities()
          the list of direct composite activities.
 java.util.Map<java.lang.String,Activity> CompositeElement.getActivitiesMap()
          the composite activities, keyed by activity name.
 



Copyright © 2009 JBoss, a division of Red Hat. All Rights Reserved.