HomeSort by relevance Sort by last modified time
    Searched refs:Attendee (Results 1 - 6 of 6) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 19 import com.android.calendar.CalendarEventModel.Attendee;
165 * Inflates a layout for a given attendee view and set up each element in it, and returns
178 final Attendee attendee = item.mAttendee; local
181 nameView.setText(TextUtils.isEmpty(attendee.mName) ? attendee.mEmail : attendee.mName);
221 public boolean contains(Attendee attendee) {
229 if (TextUtils.equals(attendee.mEmail, attendeeItem.mAttendee.mEmail))
340 final Attendee attendee = new Attendee(address.getName(), address.getAddress()); local
    [all...]
EditEventHelper.java 22 import com.android.calendar.CalendarEventModel.Attendee;
212 public Attendee mAttendee;
217 public AttendeeItem(Attendee attendee, Drawable badge) {
218 mAttendee = attendee;
437 Log.d(TAG, "Setting attendee status to " + model.mSelfAttendeeStatus);
464 HashMap<String, Attendee> newAttendees = model.mAttendeesList;
476 HashMap<String, Attendee> originalAttendees = originalModel.mAttendeesList;
479 // existing attendee. remove from new attendees set.
510 for (Attendee attendee : newAttendees.values())
    [all...]
EditEventFragment.java 59 import com.android.calendar.CalendarEventModel.Attendee;
258 Attendee attendee = new Attendee(name, email); local
259 attendee.mStatus = status;
260 mModel.addAttendee(attendee);
261 mOriginalModel.addAttendee(attendee);
    [all...]
EditEventView.java 20 import com.android.calendar.CalendarEventModel.Attendee;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 47 public static class Attendee implements Serializable {
58 if (!(obj instanceof Attendee)) {
61 Attendee other = (Attendee) obj;
80 public Attendee(String name, String email) {
85 public Attendee(String name, String email, int status) {
239 // PROVIDER_NOTES How does an event not have attendee data? The owner is added
240 // as an attendee by default.
265 public LinkedHashMap<String, Attendee> mAttendeesList;
270 mAttendeesList = new LinkedHashMap<String, Attendee>();
434 final Attendee attendee = new Attendee(address.getName(), address.getAddress()); local
    [all...]
EventInfoFragment.java 25 import com.android.calendar.CalendarEventModel.Attendee;
285 ArrayList<Attendee> mAcceptedAttendees = new ArrayList<Attendee>();
286 ArrayList<Attendee> mDeclinedAttendees = new ArrayList<Attendee>();
287 ArrayList<Attendee> mTentativeAttendees = new ArrayList<Attendee>();
288 ArrayList<Attendee> mNoResponseAttendees = new ArrayList<Attendee>();
744 mAcceptedAttendees.add(new Attendee(name, email
    [all...]

Completed in 34 milliseconds