Back to project page groundify-android.
The source code is released under:
GNU General Public License
If you think the Android project groundify-android 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 deftsoft.android.iground.utility; /* ww w . j a va2 s .co m*/ public class ChildDetail { String childName, childID; public String getChildName() { return childName; } public void setChildName(String childName) { this.childName = childName; } public String getChildID() { return childID; } public void setChildID(String childID) { this.childID = childID; } }