1 /*
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  */
16 package com.android.contacts.model.account;
17 
18 import android.content.Context;
19 
20 public class DeviceLocalAccountType extends FallbackAccountType {
21 
22     private final boolean mGroupsEditable;
23 
DeviceLocalAccountType(Context context, boolean groupsEditable)24     public DeviceLocalAccountType(Context context, boolean groupsEditable) {
25         super(context);
26         mGroupsEditable = groupsEditable;
27     }
28 
DeviceLocalAccountType(Context context)29     public DeviceLocalAccountType(Context context) {
30         this(context, false);
31     }
32 
33     @Override
isGroupMembershipEditable()34     public boolean isGroupMembershipEditable() {
35         return mGroupsEditable;
36     }
37 
38     @Override
wrapAccount(Context context, AccountWithDataSet account)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     }
46 }
47