ProgressStatus child = effected.createChild(event.getSource().getName(), event.getAllocatedSteps());
map.put(event.getSource().getId(), child);
child.setTotalStepCount(event.getSource().getTotalStepCount());
child.setCurrentStepCount(event.getSource().getCurrentStepCount());
if (event.getSource().isCompleted()) {
child.complete();
}
}
break;
case COMPLETED:
effected.complete(event.getMessage());