création de classe question boite
This commit is contained in:
parent
0beac14bb3
commit
4f40aa5190
19
NGCC/src/config/QuestionBoite.java
Normal file
19
NGCC/src/config/QuestionBoite.java
Normal 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 où 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;
|
||||
}
|
||||
}
|
27
NGCC/src/config/Reponse.java
Normal file
27
NGCC/src/config/Reponse.java
Normal 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;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user