public void attachActuator(IActuator actuator)
throws SimulationConfigurationException {
if (actuator instanceof LightingActuator) {
lights.add(actuator);
} else {
throw new SimulationConfigurationException(
"Trying to attach incompatible actuator");
}
}