diff --git a/NGCC/src/config/QuestionBoite.java b/NGCC/src/config/QuestionBoite.java new file mode 100644 index 0000000..2ec1b8e --- /dev/null +++ b/NGCC/src/config/QuestionBoite.java @@ -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; + } +} \ No newline at end of file diff --git a/NGCC/src/config/Reponse.java b/NGCC/src/config/Reponse.java new file mode 100644 index 0000000..e68cbfc --- /dev/null +++ b/NGCC/src/config/Reponse.java @@ -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; + } +}