} else if (name.equals(ParsingUtil.MONITOR)) {
currentObject = new MonitorBehavior(currentSection);
}
} else if (currentSection instanceof ActorSection) {
if (name.equals(ParsingUtil.CONTEXT_MONITOR)) {
currentObject = new ContextMonitor(currentSection);
} else if (name.equals(ParsingUtil.ACTUATOR)) {
currentObject = new StepByStepActuator(currentSection);
} else if (name.equals(ParsingUtil.CONTINUOUS_ACTUATOR)) {
currentObject = new ContinuousActuator(currentSection);
}