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);
}
// else if (name.equals(ParsingUtil.CUSTOM_ACTUATOR)) {
// currentObject = new CustomActuator(currentSection);
// }
else if (name.equals(ParsingUtil.SENSOR)) {