diff options
author | 2014-04-25 17:20:42 +0000 | |
---|---|---|
committer | 2014-04-25 17:20:42 +0000 | |
commit | 1efec72e0b4c67a50001dd92b59472e8ff109351 (patch) | |
tree | 23bf01de8a61baac15f2b886864bc992c9befccf /java/src/com/android/inputmethod/latin/utils | |
parent | c578fa508b7257f7c511f364bb1615ccb6438cc5 (diff) | |
parent | 516c884b115f2cce1fca9a1599782ccfc433ca1f (diff) | |
download | latinime-1efec72e0b4c67a50001dd92b59472e8ff109351.tar.gz latinime-1efec72e0b4c67a50001dd92b59472e8ff109351.tar.xz latinime-1efec72e0b4c67a50001dd92b59472e8ff109351.zip |
am 516c884b: Merge "Prepare to implement distracter filter"
* commit '516c884b115f2cce1fca9a1599782ccfc433ca1f':
Prepare to implement distracter filter
Diffstat (limited to 'java/src/com/android/inputmethod/latin/utils')
-rw-r--r-- | java/src/com/android/inputmethod/latin/utils/DistracterFilter.java | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/utils/DistracterFilter.java b/java/src/com/android/inputmethod/latin/utils/DistracterFilter.java new file mode 100644 index 000000000..f2a1e524d --- /dev/null +++ b/java/src/com/android/inputmethod/latin/utils/DistracterFilter.java @@ -0,0 +1,48 @@ +/* + * 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.utils; + +import com.android.inputmethod.keyboard.Keyboard; +import com.android.inputmethod.latin.Suggest; + +/** + * This class is used to prevent distracters/misspellings being added to personalization + * or user history dictionaries + */ +public class DistracterFilter { + private final Suggest mSuggest; + private final Keyboard mKeyboard; + + /** + * Create a DistracterFilter instance. + * + * @param suggest an instance of Suggest which will be used to obtain a list of suggestions + * for a potential distracter/misspelling + * @param keyboard the keyboard that is currently being used. This information is needed + * when calling mSuggest.getSuggestedWords(...) to obtain a list of suggestions. + */ + public DistracterFilter(final Suggest suggest, final Keyboard keyboard) { + mSuggest = suggest; + mKeyboard = keyboard; + } + + public boolean isDistractorToWordsInDictionaries(final String prevWord, + final String targetWord) { + // TODO: to be implemented + return false; + } +} |