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.anotherpackage; //from w ww.j ava2s. c o m import net.vvakame.util.jsonpullparser.annotation.JsonKey; import net.vvakame.util.jsonpullparser.annotation.JsonModel; /** * Test for member has class on another package. * @author backpaper0 */ @JsonModel public class AnotherPackageClass { @JsonKey private String value; /** * @return the value * @category accessor */ public String getValue() { return value; } /** * @param value the value to set * @category accessor */ public void setValue(String value) { this.value = value; } }