Uses of Class
org.jbpm.taskmgmt.def.Task

Packages that use Task
org.jbpm.graph.exe contains the runtime structures for process executions. 
org.jbpm.graph.node contains basic node implementations. 
org.jbpm.jpdl.xml jpdl xml parsing. 
org.jbpm.taskmgmt.def   
org.jbpm.taskmgmt.exe   
 

Uses of Task in org.jbpm.graph.exe
 

Fields in org.jbpm.graph.exe declared as Task
protected  Task ExecutionContext.task
           
 

Methods in org.jbpm.graph.exe that return Task
 Task ExecutionContext.getTask()
           
 

Methods in org.jbpm.graph.exe with parameters of type Task
 void ExecutionContext.setTask(Task task)
           
 

Uses of Task in org.jbpm.graph.node
 

Methods in org.jbpm.graph.node that return Task
 Task TaskNode.getTask(java.lang.String taskName)
          is the task in this task-node with the given name or null if the given task does not exist in this node.
 

Methods in org.jbpm.graph.node that return types with arguments of type Task
 java.util.Set<Task> TaskNode.getTasks()
           
 java.util.Map<java.lang.String,Task> TaskNode.getTasksMap()
          is a Map with the tasks, keyed by task-name or an empty map in case no tasks are present in this task-node.
 

Methods in org.jbpm.graph.node with parameters of type Task
 void TaskNode.addTask(Task task)
           
 

Method parameters in org.jbpm.graph.node with type arguments of type Task
 void TaskNode.setTasks(java.util.Set<Task> tasks)
           
 

Uses of Task in org.jbpm.jpdl.xml
 

Methods in org.jbpm.jpdl.xml that return Task
 Task JpdlXmlReader.readTask(org.dom4j.Element taskElement, TaskMgmtDefinition taskMgmtDefinition, TaskNode taskNode)
           
 

Methods in org.jbpm.jpdl.xml with parameters of type Task
protected  void JpdlXmlReader.readTaskTimer(org.dom4j.Element timerElement, Task task)
           
protected  void JpdlXmlReader.readTaskTimers(org.dom4j.Element taskElement, Task task)
           
 

Uses of Task in org.jbpm.taskmgmt.def
 

Fields in org.jbpm.taskmgmt.def declared as Task
protected  Task TaskMgmtDefinition.startTask
           
 

Fields in org.jbpm.taskmgmt.def with type parameters of type Task
protected  java.util.Map<java.lang.String,Task> TaskMgmtDefinition.tasks
           
protected  java.util.Set<Task> Swimlane.tasks
           
 

Methods in org.jbpm.taskmgmt.def that return Task
 Task TaskMgmtDefinition.getStartTask()
           
 Task TaskMgmtDefinition.getTask(java.lang.String taskName)
           
 

Methods in org.jbpm.taskmgmt.def that return types with arguments of type Task
 java.util.Map<java.lang.String,Task> TaskMgmtDefinition.getTasks()
           
 java.util.Set<Task> Swimlane.getTasks()
           
 

Methods in org.jbpm.taskmgmt.def with parameters of type Task
 void TaskMgmtDefinition.addTask(Task task)
           
 void Swimlane.addTask(Task task)
           
 void TaskMgmtDefinition.setStartTask(Task startTask)
           
 

Uses of Task in org.jbpm.taskmgmt.exe
 

Fields in org.jbpm.taskmgmt.exe declared as Task
protected  Task TaskInstance.task
           
 

Methods in org.jbpm.taskmgmt.exe that return Task
 Task TaskInstance.getTask()
           
 

Methods in org.jbpm.taskmgmt.exe with parameters of type Task
 TaskInstance TaskMgmtInstance.createTaskInstance(Task task)
           
 TaskInstance TaskMgmtInstance.createTaskInstance(Task task, ExecutionContext executionContext)
          creates a new task instance on the given task, in the given execution context.
 TaskInstance TaskMgmtInstance.createTaskInstance(Task task, Token token)
          creates a new task instance on the given token, for the given task.
 void TaskInstance.setTask(Task task)
           
 



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