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; /* ww w . ja v a 2 s .c om*/ import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Parent 0 output. * @author vvakame */ @JsonModel public class Parent0Value { @JsonKey(out = false) private int piyo; /** * @return the piyo * @category accessor */ public int getPiyo() { return piyo; } /** * @param piyo the piyo to set * @category accessor */ public void setPiyo(int piyo) { this.piyo = piyo; } }