Home
last modified time | relevance | path

Searched refs:EventEditType (Results 1 – 4 of 4) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
DAccountType.java404 public static class EventEditType extends EditType { class in AccountType
407 public EventEditType(int rawValue, int labelRes) { in EventEditType() method in AccountType.EventEditType
415 public EventEditType setYearOptional(boolean yearOptional) { in setYearOptional()
DBaseAccountType.java142 return new EventEditType(type, Event.getTypeResource(type)).setYearOptional(yearOptional); in buildEventType()
/packages/apps/Contacts/src/com/android/contacts/editor/
DEventFieldEditorView.java35 import com.android.contacts.common.model.account.AccountType.EventEditType;
155 protected EventEditType getType() { in getType()
156 return (EventEditType) super.getType(); in getType()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactModifier.java58 import com.android.contacts.common.model.account.AccountType.EventEditType;
1264 final SparseArray<EventEditType> allowedTypes = new SparseArray<EventEditType>(); in migrateEvent()
1266 allowedTypes.put(editType.rawValue, (EventEditType) editType); in migrateEvent()
1277 EventEditType suitableType = allowedTypes.get(type); in migrateEvent()