|
@@ -4,7 +4,7 @@ public class QuestionGroup {
|
|
|
|
|
|
private boolean objective;
|
|
|
|
|
|
- private int number;
|
|
|
+ private int mainNumber;
|
|
|
|
|
|
private double totalScore;
|
|
|
|
|
@@ -12,9 +12,9 @@ public class QuestionGroup {
|
|
|
|
|
|
private String paperType;
|
|
|
|
|
|
- public QuestionGroup(boolean objective, int number,String paperType) {
|
|
|
+ public QuestionGroup(boolean objective, int mainNumber,String paperType) {
|
|
|
this.objective = objective;
|
|
|
- this.number = number;
|
|
|
+ this.mainNumber = mainNumber;
|
|
|
this.paperType = paperType;
|
|
|
}
|
|
|
|
|
@@ -26,8 +26,8 @@ public class QuestionGroup {
|
|
|
fullScore += score;
|
|
|
}
|
|
|
|
|
|
- public int getNumber() {
|
|
|
- return number;
|
|
|
+ public int getMainNumber() {
|
|
|
+ return mainNumber;
|
|
|
}
|
|
|
|
|
|
public double getTotalScore() {
|