Back to project page nl.fhict.intellicloud.answers.android.
The source code is released under:
Apache License
If you think the Android project nl.fhict.intellicloud.answers.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 nl.fhict.intellicloud.answers; /* ww w . j a v a2 s . c om*/ public class User{ private int id; private String firstName; private String lastName; private String infix; private UserType userType; public User(int id, String firstName, String lastName, String infix, UserType userType) { this.id = id; this.firstName = firstName; this.lastName = lastName; this.infix = infix; this.userType = userType; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public String getInfix() { return infix; } public void setInfix(String infix) { this.infix = infix; } public UserType getUserType() { return userType; } public void setUserType(UserType userType) { this.userType = userType; } public String getFullName() { return getFirstName() + " " + getLastName(); } }