création de classe question boite

This commit is contained in:
Saad el din 2019-09-19 14:44:32 +02:00
parent 0beac14bb3
commit 4f40aa5190
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package config;
public class QuestionBoite extends Question {
// Type de question differente du normal, c'est une question avec une boite de texte l'étudiant saisira du texte
private int nbligne; // nb de lignes dans la boite
public QuestionBoite(String t, boolean b, int nb) {
super(t, b);
nbligne = nb;
}
public int getNbligne() {
return nbligne;
}
public void setNbligne(int nbligne) {
this.nbligne = nbligne;
}
}

View File

@ -0,0 +1,27 @@
package config;
public class Reponse {
private String intitule;
private boolean juste = false;
public String getIntitulé() {
return intitule;
}
public Reponse(String t, boolean b) {
intitule = t;
juste = b;
}
public void setIntitule(String intitule) {
this.intitule = intitule;
}
public boolean isJuste() {
return juste;
}
public void setJuste(boolean juste) {
this.juste = juste;
}
}