blob: c6c7d07fa015ec554d05c864650d5ff318329350 [file] [log] [blame]
Marcus Hagerottfac695a2016-08-24 17:02:40 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Gary Mai69c182a2016-12-05 13:07:03 -080016package com.android.contacts.model.account;
Marcus Hagerottfac695a2016-08-24 17:02:40 -070017
18import android.content.Context;
19
20public class DeviceLocalAccountType extends FallbackAccountType {
21
22 private final boolean mGroupsEditable;
23
24 public DeviceLocalAccountType(Context context, boolean groupsEditable) {
25 super(context);
26 mGroupsEditable = groupsEditable;
27 }
28
29 public DeviceLocalAccountType(Context context) {
30 this(context, false);
31 }
32
33 @Override
34 public boolean isGroupMembershipEditable() {
35 return mGroupsEditable;
36 }
Marcus Hagerott75895e72016-12-12 17:21:57 -080037
38 @Override
39 public AccountInfo wrapAccount(Context context, AccountWithDataSet account) {
40 // Use the "Device" type label for the name as well because on OEM phones the "name" is
41 // not always user-friendly
42 return new AccountInfo(
43 new AccountDisplayInfo(account, getDisplayLabel(context), getDisplayLabel(context),
44 getDisplayIcon(context), true), this);
45 }
Marcus Hagerottfac695a2016-08-24 17:02:40 -070046}