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 www .java 2 s . co m*/ public class QuizHanzi { private final int id; private final String word; private final String pinyin; private final String definition; private final String soundfile; public QuizHanzi(int id, String word, String pinyin, String definition, String soundfile) { this.id = id; this.word = word; this.pinyin = pinyin; this.definition = definition; this.soundfile = soundfile; } public int getId() { return id; } public String getWord() { return word; } public String getPinyin() { return pinyin; } public String getDefinition() { return definition; } public String getSoundfile() { return soundfile; } @Override public String toString() { return "QuizHanzi [id=" + id + ", word=" + word + ", pinyin=" + pinyin + ", definition=" + definition + ", soundfile=" + soundfile + "]"; } }