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.android.provider.table; /* w ww .jav a 2 s . c om*/ import static java.lang.annotation.ElementType.TYPE; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Target({ TYPE }) @Retention(RUNTIME) public @interface SQLiteTable { boolean temp() default false; boolean ifNotExists() default false; String dbName() default ""; }