Added classes for the MatchTheMeaningQuestion and SixMeaningsQuestion.
This commit is contained in:
parent
8ad18bfa42
commit
e202b18d31
2 changed files with 16 additions and 0 deletions
|
@ -0,0 +1,4 @@
|
|||
package uk.ac.aber.cs22120.group20.selfassessment;
|
||||
|
||||
public class MatchTheMeaningQuestion {
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package uk.ac.aber.cs22120.group20.selfassessment;
|
||||
|
||||
public class SixMeaningsQuestion {
|
||||
private static SixMeaningsQuestion ourInstance = new SixMeaningsQuestion();
|
||||
|
||||
public static SixMeaningsQuestion getInstance() {
|
||||
return ourInstance;
|
||||
}
|
||||
|
||||
private SixMeaningsQuestion() {
|
||||
}
|
||||
}
|
Reference in a new issue