diff options
author | 2014-06-16 02:39:42 +0000 | |
---|---|---|
committer | 2014-06-10 22:31:57 +0000 | |
commit | a4f2e8eee086e97330299515b0894da9f602b279 (patch) | |
tree | c451cd62756ff9df18dbc9140877c0635c2d27c5 /java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java | |
parent | 83c7fc94f61fe24b50111a1be0f52a913f9c755a (diff) | |
parent | 1a4d815b0bba824cb6893ad9f6ef0597c9740378 (diff) | |
download | latinime-a4f2e8eee086e97330299515b0894da9f602b279.tar.gz latinime-a4f2e8eee086e97330299515b0894da9f602b279.tar.xz latinime-a4f2e8eee086e97330299515b0894da9f602b279.zip |
Merge "Contextual dictionary updater."
Diffstat (limited to 'java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java b/java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java new file mode 100644 index 000000000..2cccf1615 --- /dev/null +++ b/java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java @@ -0,0 +1,36 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.inputmethod.latin.personalization; + +import android.content.Context; + +import com.android.inputmethod.latin.DictionaryFacilitator; + +public class ContextualDictionaryUpdater { + public ContextualDictionaryUpdater(final Context context, + final DictionaryFacilitator dictionaryFacilitator) { + } + + public void onLoadSettings(final boolean usePersonalizedDicts) { + } + + public void onStartInputView(final String packageName) { + } + + public void onDestroy() { + } +} |