Home | History | Annotate | Download | only in model

Lines Matching refs:dataItem

32 import com.android.contacts.common.model.dataitem.DataItem;
42 * items, and also contains a collection of DataItem objects. A RawContact contains the information
47 * DataItem objects that represent contact information elements (like phone
59 // This use to be a DataItem. DataItem creation is now delayed until the point of request
62 // DataItem it is. And having parent DataItem's here makes it very difficult to serialize or
65 // Instead of having a common DataItem super class, we should refactor this to be a generic
69 // worse than having a DataItem.
312 * Creates and inserts a DataItem object that wraps the content values, and returns it.
326 for (NamedDataItem dataItem : mDataItems) {
327 if (Data.CONTENT_URI.equals(dataItem.mUri)) {
328 list.add(dataItem.mContentValues);
334 public List<DataItem> getDataItems() {
335 final ArrayList<DataItem> list = Lists.newArrayListWithCapacity(mDataItems.size());
336 for (NamedDataItem dataItem : mDataItems) {
337 if (Data.CONTENT_URI.equals(dataItem.mUri)) {
338 list.add(DataItem.createFrom(dataItem.mContentValues));