/** {@inheritDoc} */
 @Override
 public void populateContextForView(
     @NotNull Map<String, Object> context, @NotNull TaskDefinition taskDefinition) {
   super.populateContextForView(context, taskDefinition);
   taskConfiguratorHelper.populateContextWithConfiguration(
       context, taskDefinition, FIELDS_TO_COPY);
   context.put(
       CFG_SONAR_SERVER_CONFIGURED,
       Boolean.valueOf(taskDefinition.getConfiguration().get(CFG_SONAR_SERVER_CONFIGURED)));
   context.put(
       CFG_SONAR_PROJECT_CONFIGURED,
       Boolean.valueOf(taskDefinition.getConfiguration().get(CFG_SONAR_PROJECT_CONFIGURED)));
 }