Back to project page silent-meeting.
The source code is released under:
GNU General Public License
If you think the Android project silent-meeting 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 uk.co.bensproule.silentmeeting.domain; //from w w w. ja va 2 s .c o m public class Attendee { private int status; private String email; public Attendee(int status, String email) { setStatus(status); setEmail(email); } public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } }