// initialize the timers
Set<TimerDefinitionImpl> timerDefinitions = scope.getTimerDefinitions();
if (!timerDefinitions.isEmpty()) {
for (TimerDefinitionImpl timerDefinition: timerDefinitions) {
TimerImpl timer = createTimer(timerDefinition);
timer.schedule();
}
}
}
protected void destroyTimers(CompositeElementImpl scope) {