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 . j a va2s . c o 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 ExtendsData1 extends BaseData { @JsonKey long three; @JsonKey long four; /** * @return the three * @category accessor */ public long getThree() { return three; } /** * @param three the three to set * @category accessor */ public void setThree(long three) { this.three = three; } /** * @return the four * @category accessor */ public long getFour() { return four; } /** * @param four the four to set * @category accessor */ public void setFour(long four) { this.four = four; } }