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 ww w . j a v a 2s . c om*/ public class Calendar { private int id; private String name; private int accessLevel; private String accountName; private String accountType; private String ownerAccount; public Calendar(int id, String name, int accessLevel, String accountName, String accountType, String ownerAccount) { setId(id); setName(name); setAccessLevel(accessLevel); setAccountName(accountName); setAccountType(accountType); setOwnerAccount(ownerAccount); } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAccessLevel() { return accessLevel; } public void setAccessLevel(int accessLevel) { this.accessLevel = accessLevel; } public String getAccountName() { return accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public String getOwnerAccount() { return ownerAccount; } public void setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; } }