Back to project page LearnByHeart.
The source code is released under:
Apache License
If you think the Android project LearnByHeart 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 com.mps.learn.pb.db; //from ww w .j a v a2s .c o m import android.provider.BaseColumns; public final class PhraseReaderContract { /* Inner class that defines the table contents */ public static abstract class PhraseEntry implements BaseColumns { public static final String TABLE_NAME = "PbPhraseBook"; public static final String COLUMN_NAME_TITLE = "title"; public static final String COLUMN_NAME_USAGE_PB = "usage_pb"; public static final String COLUMN_NAME_USAGE_EN = "usage_en"; public static final String COLUMN_NAME_RES_URL = "url"; public static final String COLUMN_NAME_UPDATED = "updated"; public static final String COLUMN_NAME_NULLABLE = null; } }