1 /*
2  * Copyright (C) 2014 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 
17 package com.android.inputmethod.latin.personalization;
18 
19 import java.util.Locale;
20 
21 import android.content.Context;
22 
23 import com.android.inputmethod.latin.DictionaryFacilitator;
24 
25 public class PersonalizationDictionaryUpdater {
26     final Context mContext;
27     final DictionaryFacilitator mDictionaryFacilitator;
28     boolean mDictCleared = false;
29 
PersonalizationDictionaryUpdater(final Context context, final DictionaryFacilitator dictionaryFacilitator)30     public PersonalizationDictionaryUpdater(final Context context,
31             final DictionaryFacilitator dictionaryFacilitator) {
32         mContext = context;
33         mDictionaryFacilitator = dictionaryFacilitator;
34     }
35 
getLocale()36     public Locale getLocale() {
37         return null;
38     }
39 
onLoadSettings(final boolean usePersonalizedDicts, final boolean isSystemLocaleSameAsLocaleOfAllEnabledSubtypesOfEnabledImes)40     public void onLoadSettings(final boolean usePersonalizedDicts,
41             final boolean isSystemLocaleSameAsLocaleOfAllEnabledSubtypesOfEnabledImes) {
42         if (!mDictCleared) {
43             // Clear and never update the personalization dictionary.
44             PersonalizationHelper.removeAllPersonalizationDictionaries(mContext);
45             mDictionaryFacilitator.clearPersonalizationDictionary();
46             mDictCleared = true;
47         }
48     }
49 
onDestroy()50     public void onDestroy() {
51     }
52 }
53