Back to project page android-properties.
The source code is released under:
Apache License
If you think the Android project android-properties 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.github.fernandodev.androidproperties.lib; /*from ww w .j a va2 s. co m*/ import android.content.Context; /** * Created by fernando on 9/13/14. */ public class Config extends AssetsProperties { @Property("my_message") String myMessage; @Property double tax; @Property("max_messages") int maxMessages; @Property boolean flag; @Property float rate; public Config(Context context) { super(context); } }