Home | History | Annotate | Download | only in calendar

Lines Matching defs:attendee

48     public static class Attendee implements Serializable {
59 if (!(obj instanceof Attendee)) {
62 Attendee other = (Attendee) obj;
83 public Attendee(String name, String email) {
86 public Attendee(String name, String email, int status, String identity,
251 // PROVIDER_NOTES How does an event not have attendee data? The owner is added
252 // as an attendee by default.
279 public LinkedHashMap<String, Attendee> mAttendeesList;
284 mAttendeesList = new LinkedHashMap<String, Attendee>();
354 mAttendeesList.put(email, new Attendee("", email));
446 public void addAttendee(Attendee attendee) {
447 mAttendeesList.put(attendee.mEmail, attendee);
455 final Attendee attendee = new Attendee(address.getName(), address.getAddress());
456 if (TextUtils.isEmpty(attendee.mName)) {
457 attendee.mName = attendee.mEmail;
459 addAttendee(attendee);
464 public void removeAttendee(Attendee attendee) {
465 mAttendeesList.remove(attendee.mEmail);
470 for (Attendee attendee : mAttendeesList.values()) {
471 String name = attendee.mName;
472 String email = attendee.mEmail;
473 String status = Integer.toString(attendee.mStatus);