modif DataCsv.java et repertoir test

This commit is contained in:
yann 2020-12-16 19:23:55 +01:00 committed by name
parent 7abec14389
commit ad0e5f090f
3 changed files with 109 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package fr.myny.data;
public class ImportData {
String url;
/**
* Le constructeur de ImportData
*/
public ImportData(){
}
/**
* Le constructeur de ImportData
* @param url string contenant l URL dou recuperer les fichiers csv
*/
public ImportData(String url){
this.url=url;
}
/**
* La methode de recuperation de l URL
*/
public void getUrl(){
}
public void unzip() {
}
}