/**
* Constructor
*/
public ActuatorController(IActuator actuator) {
this.view = new ActuatorView(this);
view.setConfirmation(ModelPreferences.getInstance().isEnableConfirmation());
ModelPreferences.getInstance().register(this);
this.actuator = null;
this.setActuator(actuator);
if (actuator == null) {