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.repository; //w w w. j a v a 2 s . com public class DatabaseMetadata { /** Table containing all word lists */ public static final String T_WORDS = "t_words"; /** Table for cached quizzes. */ public static final String T_CACHE = "t_cache"; /** Table for the exam questions and metadata. */ public static final String T_EXAM_RESULTS = "t_exam_results"; /** Table for word list metadata */ public static final String T_WORDLISTS = "t_wordlists"; /** View for exam word list **/ public static final String V_EXAM = "v_exam"; // Word list ids used in the category_id column public static final int WORD_LIST_ID_HSK1 = 1; public static final int WORD_LIST_ID_HSK2 = 2; public static final int WORD_LIST_ID_SU1 = 3; public static final int WORD_LIST_ID_SU2 = 4; public static final int WORD_LIST_ID_SU2L = 5; public static final int WORD_LIST_ID_CL = 6; public static final int[] ALL_WORD_LIST_IDS = { WORD_LIST_ID_HSK1, WORD_LIST_ID_HSK2, WORD_LIST_ID_SU1, WORD_LIST_ID_SU2, WORD_LIST_ID_SU2L, WORD_LIST_ID_CL }; }