Package importation.csv

Source Code of importation.csv.CSVPaysDecodeur

package importation.csv;

import modele.chauffeur.Pays;

/**
* Classe CSVPaysDecodeur
* implemente ICsvDecodeur
* contruit un pays � partir d'une ligne de donn�es
* @author Kasandra
*
*/
public class CSVPaysDecodeur implements ICsvDecodeur<Pays> {

    private static final int INDEX_CHAMP_CODE = 0;
    private static final int INDEX_CHAMP_NOM = 1;

   /**
    * construit un pays � partir d'une ligne de donn�e
    *
    */
  public Pays decode(String[] ligne) {
    Pays pays = new Pays();
    pays.setCode(ligne[INDEX_CHAMP_CODE]);
    pays.setNom(ligne[INDEX_CHAMP_NOM]);
   
    return pays;
  }

}
TOP

Related Classes of importation.csv.CSVPaysDecodeur

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.