| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Workflow |
|
| 1.0;1 |
| 1 | package org.sbpm.bpmo; | |
| 2 | ||
| 3 | public interface Workflow extends Identifiable { | |
| 4 | ||
| 5 | public Process getHomeProcess(); | |
| 6 | public void setHomeProcess(Process process); | |
| 7 | ||
| 8 | public void setWorkflowElement(WorkflowElement workflowElement); | |
| 9 | public WorkflowElement getWorkflowElement(); | |
| 10 | ||
| 11 | ||
| 12 | } |