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; /*from w w w . j av a 2s. co m*/ import static java.lang.annotation.ElementType.TYPE; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; /** * Annotation to create Queries like described in the spec: * * http://www.sqlite.org/lang_insert.html * * @author asiebert * */ @Target({ TYPE }) @Retention(RUNTIME) public @interface UriPathExt { String uri(); }