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.sqlite.query; // w w w. jav a 2 s. c om import static java.lang.annotation.ElementType.METHOD; 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({ METHOD }) @Retention(RUNTIME) public @interface SQL { String query(); QueryType type() default QueryType.SELECT; String path(); }