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 ww w.ja v a2 s .c om*/ public class WordList { private int id; private String name; private int userDefined = 1; public WordList(int id, String name, int userDefined) { this.id = id; this.name = name; this.userDefined = userDefined; } public WordList(int id, String name) { this.id = id; this.name = name; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getUserDefined() { return userDefined; } public void setUserDefined(int userDefined) { this.userDefined = userDefined; } }