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.issue2; //from w ww.j a v a 2 s . c o m import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Parent 1 output, Child 1 output. * @author vvakame */ @JsonModel public class Child1ValueP1 extends Parent1Value { @JsonKey private int hoge; /** * @return the hoge * @category accessor */ public int getHoge() { return hoge; } /** * @param hoge the hoge to set * @category accessor */ public void setHoge(int hoge) { this.hoge = hoge; } }