Back to project page YesNoGame.
The source code is released under:
GNU General Public License
If you think the Android project YesNoGame 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 example.swa.yesnogame.domain; //from ww w . j a va2 s.c o m import example.swa.yesnogame.domain.simple.UserSimple; /** * User entity. Has same properties as simple class by now. * * @author Hendrik.Stilke@siemens.com * */ public class User extends UserSimple { public User(Long id, String name) { super(id, name); } }