Création d'un constructeur pour ImportData #1
2 changed files with 5 additions and 1 deletions
|
|
@ -1,4 +1,8 @@
|
||||||
package fr.myny.data;
|
package fr.myny.data;
|
||||||
|
|
||||||
public class ImportData {
|
public class ImportData {
|
||||||
|
ImportData()
|
||||||
|
{
|
||||||
|
System.out.println("Creation d'un ImportData");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
public class test{
|
public class test{
|
||||||
public static void main(String[] args){
|
public static void main(String[] args){
|
||||||
System.out.println("Il n'y a rien a voir !");
|
System.out.println("Il n'y a rien a voir !");
|
||||||
System.out.println("nico fait un test");
|
System.out.println("nico fait un test");
|
||||||
|
System.out.println("Il Je test les branchs");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in a new issue