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.glowplug; //from w w w . j a va 2 s. c om import com.adecker.glowplugannotations.GlowplugType; /** * Created by alex on 12/20/13. */ public abstract class GlowplugProperty { public abstract String getName(); public abstract String getSqliteName(); public abstract String getRemoteName(); public abstract String getFQName(); public abstract GlowplugType getType(); public abstract int getIndex(); }