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 v a 2s.co m*/ import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * A model for deeply nested patterns. * @author vvakame */ @JsonModel(decamelize = true) public class NestDepth2Data { @JsonKey String str; /** * @return the str * @category accessor */ public String getStr() { return str; } /** * @param str the str to set * @category accessor */ public void setStr(String str) { this.str = str; } }