Back to project page Glowplug.
The source code is released under:
MIT License
If you think the Android project Glowplug 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.adecker.glowplugannotations; //from w ww.jav a2s . c o m /** * Created by alex on 10/29/13. */ public @interface Attribute { String sqliteName() default ""; String sqliteType() default ""; String remoteName() default ""; boolean primaryKey() default false; String primaryKeyConflict() default ""; boolean autoIncrement() default false; String[] constaints() default {}; }