Back to project page JsonPullParser.
The source code is released under:
Apache License
If you think the Android project JsonPullParser 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 net.vvakame.sample.issue31; //from ww w. jav a 2 s . co m import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Base class. * @author vvakame */ @JsonModel(builder = true) public class BaseData { @JsonKey int a; /** * @return the a * @category accessor */ public int getA() { return a; } /** * @param a the a to set * @category accessor */ public void setA(int a) { this.a = a; } }