/**
  * Writer to create dbf file
  *
  * @param writer
  * @param feature - fill with the corresponding rows
  * @param index - fill file position
  */
 private void write(IWriter writer, IFeature feature, int index) {
   DefaultRowEdited edRow = new DefaultRowEdited(feature, DefaultRowEdited.STATUS_ADDED, index);
   try {
     writer.process(edRow);
   } catch (VisitorException e) {
     logger.error("Error en la generaciĆ³n del fichero dbf");
   }
 }