Classe QuestionBoite extend de Question

This commit is contained in:
nh805942 2019-09-12 15:13:36 +02:00
parent 24ea00f0a0
commit 2f1f01bdf4

View File

@ -0,0 +1,13 @@
package config;
public class QuestionBoite extends Question{
private int nbligne;
public int getNbligne() {
return nbligne;
}
public void setNbligne(int nbligne) {
this.nbligne = nbligne;
}
}