Back to project page android-webview-example.
The source code is released under:
Apache License
If you think the Android project android-webview-example 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.significantfiles.mrcounter.db; /*from w w w. j a v a 2 s . c om*/ import com.significantfiles.android.provider.table.Authority; import com.significantfiles.android.provider.table.OrderBy; import com.significantfiles.android.provider.table.SQLiteField; import com.significantfiles.android.provider.table.SQLiteTable; import com.significantfiles.android.provider.table.constraint.IsPrimaryKey; import com.significantfiles.android.provider.table.constraint.NotNull; import com.significantfiles.android.sqlite.types.INTEGER; import com.significantfiles.android.sqlite.types.REAL; @SQLiteTable(temp = false, ifNotExists = true, dbName="mrcounter" ) public interface Credit { @SQLiteField @IsPrimaryKey(order=OrderBy.ASC, autoIncrement=true) @NotNull public INTEGER _ID(); // public static final String ID = "ID"; @SQLiteField public REAL CREDIT_VALUE(); // public String CREDIT_VALUE = "CREDIT_VALUE"; @SQLiteField @NotNull public INTEGER CREDIT_BY(); @SQLiteField @NotNull public INTEGER CREATED_AT(); @SQLiteField @NotNull public INTEGER MODIFIED_AT(); }