/* Comment copied from Interface. */
public void suspend () throws CannotSuspendException,
NotRunningException, AlreadySuspendedException {
super.suspend ();
Implementation impl = executor ();
if (impl != null && (impl instanceof SubFlowImplementation)) {
Collection subs = performersLocal();
for (Iterator i = subs.iterator (); i.hasNext();) {
WfProcessLocal p = (WfProcessLocal)i.next();
try {