Back to project page OpenHSK.
The source code is released under:
This work is licensed under a Creative Commons Attribution 3.0 Unported License. Original author of word lists: http://lingomi.com/ Original author of definitions: http://cc-cedict.org Original autho...
If you think the Android project OpenHSK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.openhsk.models; /*from w ww .j av a 2s.c o m*/ import java.util.Date; public class ExamResult { private final int correctAnswers; private final int wrongAnswers; private final Date examDate; /** * @param id * @param wordListId * @param correctAnswers * @param wrongAnswers * @param examDate */ public ExamResult(int correctAnswers, int wrongAnswers, Date examDate) { this.correctAnswers = correctAnswers; this.wrongAnswers = wrongAnswers; this.examDate = examDate; } public int getCorrectAnswers() { return correctAnswers; } public int getWrongAnswers() { return wrongAnswers; } public Date getExamDate() { return examDate; } }