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 .com import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Extend class from base class. * @author vvakame */ @JsonModel(builder = true) public class ExtendData extends BaseData { @JsonKey String b; /** * @return the b * @category accessor */ public String getB() { return b; } /** * @param b the b to set * @category accessor */ public void setB(String b) { this.b = b; } }