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 . j a v a2 s . c o m import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Parent 0 output, Child 1 output, Grandchild 0 output. * @author vvakame */ @JsonModel public class Grandchild0ValueC1P0 extends Child1ValueP0 { @JsonKey(out = false) private int fuga; /** * @return the fuga * @category accessor */ public int getFuga() { return fuga; } /** * @param fuga the fuga to set * @category accessor */ public void setFuga(int fuga) { this.fuga = fuga; } }