Back to project page RoboSpringExt.
The source code is released under:
Apache License
If you think the Android project RoboSpringExt listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Created on 23.02.2012//from ww w . ja va2 s. c o m * * 2012 Daniel Thommes */ package org.robospring.ext; /** * * * @author Daniel Thommes */ public class Person { private Person father; private Person mother; private String name; /** * @return the father */ public Person getFather() { return father; } /** * @param father * the father to set */ public void setFather(Person father) { this.father = father; } /** * @return the mother */ public Person getMother() { return mother; } /** * @param mother * the mother to set */ public void setMother(Person mother) { this.mother = mother; } /** * @return the name */ public String getName() { return name; } /** * @param name * the name to set */ public void setName(String name) { this.name = name; } }