Skip to content
Snippets Groups Projects
Commit 9ed8a840 authored by Axel's avatar Axel
Browse files

override quizmethod

parent faf71d87
No related branches found
No related tags found
No related merge requests found
...@@ -29,8 +29,7 @@ public interface IPeerAssessment { ...@@ -29,8 +29,7 @@ public interface IPeerAssessment {
* writes a quiz-question into the DB so other students can benefit from another's insights. * writes a quiz-question into the DB so other students can benefit from another's insights.
* *
* @param student * @param student
* @param question * @param quiz
* @param answers
*/ */
void createQuiz(StudentIdentifier student, Quiz quiz); void createQuiz(StudentIdentifier student, Quiz quiz);
......
...@@ -10,6 +10,12 @@ public class FBAssessement extends AssessmentDAO { ...@@ -10,6 +10,12 @@ public class FBAssessement extends AssessmentDAO {
// write it to db // write it to db
} }
@Override
public void createQuiz(StudentIdentifier student, Quiz quiz) {
}
@Override @Override
public int[] calculateAssessment(Performance[] performanceOfAllStudents){ // calculates marks for every performance and writes it to an array public int[] calculateAssessment(Performance[] performanceOfAllStudents){ // calculates marks for every performance and writes it to an array
int[] dummy = new int[4]; int[] dummy = new int[4];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment