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.constraint; //w w w.j a v a2 s .c o m import com.significantfiles.android.provider.table.OrderBy; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Target({ METHOD }) @Retention(RUNTIME) public @interface IsPrimaryKey { String name() default ""; OrderBy order() default OrderBy.ASC; boolean autoIncrement() default false; String msg() default ""; }