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 w w w.java2 s. co m*/ import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Inheritance chain test class, for subclasses. * @author vvakame */ @JsonModel public class ExtendsData2 extends ExtendsData1 { @JsonKey long five; /** * @return the five * @category accessor */ public long getFive() { return five; } /** * @param five the five to set * @category accessor */ public void setFive(long five) { this.five = five; } }