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; //from ww w .ja v a2 s . c o m import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Inheritance chain test class, for base classes. * @author vvakame */ @JsonModel public class BaseData { @JsonKey long one; @JsonKey long two; /** * @return the one * @category accessor */ public long getOne() { return one; } /** * @param one the one to set * @category accessor */ public void setOne(long one) { this.one = one; } /** * @return the two * @category accessor */ public long getTwo() { return two; } /** * @param two the two to set * @category accessor */ public void setTwo(long two) { this.two = two; } }