| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| InterleavedParallelRouting |
|
| 0.0;0 |
| 1 | package org.sbpm.bpmo; | |
| 2 | ||
| 3 | import java.util.Set; | |
| 4 | ||
| 5 | public interface InterleavedParallelRouting extends OutgoingFlow { | |
| 6 | ||
| 7 | public void addOutgoingConnector(ControlflowConnector outConn); | |
| 8 | public void removeOutgoingConnector(ControlflowConnector outConn); | |
| 9 | public Set<ControlflowConnector> listOutgoingConnectors(); | |
| 10 | ||
| 11 | } |