fix ';' and change type from String to int (matching attributes)
This commit is contained in:
parent
2b24b376a8
commit
df779a87ba
@ -18,7 +18,7 @@ public class Question {
|
|||||||
public Question(String t, boolean b, int n) {
|
public Question(String t, boolean b, int n) {
|
||||||
titre = t;
|
titre = t;
|
||||||
multiple = b;
|
multiple = b;
|
||||||
coeff = n
|
coeff = n;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<Reponse> getReponses() {
|
public ArrayList<Reponse> getReponses() {
|
||||||
@ -29,7 +29,7 @@ public class Question {
|
|||||||
this.reponses = reponses;
|
this.reponses = reponses;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCoeff() {
|
public int getCoeff() {
|
||||||
return coeff;
|
return coeff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user