diff options
author | 2012-04-06 15:30:42 +0900 | |
---|---|---|
committer | 2012-04-06 17:07:29 +0900 | |
commit | f420df28233c26e555d203185fb292e83b94b8c3 (patch) | |
tree | cadd28d7666ed16713b1b46c0cf412f987bcc3bf /java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java | |
parent | b8060399c71a4e23f09eb1f30793043376b42f13 (diff) | |
download | latinime-f420df28233c26e555d203185fb292e83b94b8c3.tar.gz latinime-f420df28233c26e555d203185fb292e83b94b8c3.tar.xz latinime-f420df28233c26e555d203185fb292e83b94b8c3.zip |
Add support for German umlaut and French ligatures flags
Bug: 6202812
Change-Id: Ib4a7f96f6ef86c840069b15d04393f84d428c176
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java b/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java index 3515287b0..40bcfc3aa 100644 --- a/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java +++ b/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java @@ -239,13 +239,17 @@ public class FusionDictionary implements Iterable<Word> { * There are no options at the moment, so this class is empty. */ public static class DictionaryOptions { - final HashMap<String, String> mAttributes; - public DictionaryOptions(final HashMap<String, String> attributes) { + public final boolean mGermanUmlautProcessing; + public final boolean mFrenchLigatureProcessing; + public final HashMap<String, String> mAttributes; + public DictionaryOptions(final HashMap<String, String> attributes, + final boolean germanUmlautProcessing, final boolean frenchLigatureProcessing) { mAttributes = attributes; + mGermanUmlautProcessing = germanUmlautProcessing; + mFrenchLigatureProcessing = frenchLigatureProcessing; } } - public final DictionaryOptions mOptions; public final Node mRoot; |