Back to project page ExpertAndroid.
The source code is released under:
MIT License
If you think the Android project ExpertAndroid 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 com.iuriio.demos.expertandroid.ch4gsonserialization; /*from ww w . j a v a 2s. c o m*/ public class ChildObject { public String name; public int age; public boolean likesVeggies = false; public ChildObject(String inName, int inAge) { name = inName; age = inAge; } }