1 ------------------------------------------------------------------------------- 2 OpenWnn Japnese README 3 4 Version 1.3.6 5 6 (C) Copyright OMRON SOFTWARE Co., Ltd. 2008-2012 All Rights Reserved. 7 ------------------------------------------------------------------------------- 8 9 1. About OpenWnn 10 11 OpenWnn is a IME(Input Method Editor) package which 12 works on Android's IMF(Input Method Framework). This version 13 contains Japanese IME. 14 15 2. Contents 16 17 This package includes the following items. 18 19 o Document 20 . Apache license paper (text) 21 . This README (text) 22 . Change history (text) 23 . Java docs of the IME (HTML) 24 25 o Building environment 26 . Building control file (XML, makefile, shell script) 27 . IME native library source code (C) 28 . IME resource (XML, PNG) 29 . IME source code (Java) 30 31 3. Dictionary Libraries 32 33 [libWnnEngDic.so: English dictionary] 34 Index 0: English dictionary for normal prediction (high priority) 35 Index 1: English dictionary for normal prediction (middle priority) 36 Index 2: English dictionary for normal prediction (low priority) 37 Index 3: English dictionary for relative prediction #1 38 Index 4: English dictionary for relative prediction #2 39 40 [libWnnJpnDic.so: Japanese dictionary] 41 Index 0: Japanese dictionary for normal prediction (high priority) 42 Index 1: Japanese dictionary for normal prediction (low priority) 43 Index 2: Japanese dictionary for relative prediction #1 44 Index 3: Japanese dictionary for relative prediction #2 45 Index 4: Japanese dictionary for clause conversion (single Kanji) 46 Index 5: Japanese dictionary for clause conversion (basic words) 47 Index 6: Japanese dictionary for clause conversion (ancillary words) 48 49 4. File constitution 50 51 NOTICE Apache license paper 52 README.txt This README 53 ChangeLog.txt Change history 54 55 doc/ 56 *.html Java docs of the IME 57 58 Android.mk Building control file 59 AndroidManifest.xml | 60 61 libs/ IME native library source code (C language) 62 Android.mk | 63 libwnnDictionary/ | 64 Android.mk | 65 *.c | 66 *.h | 67 engine/ | 68 *.c | 69 include/ | 70 *.h | 71 libwnnEngDic/ | 72 Android.mk | 73 *.c | 74 libwnnJpnDic/ | 75 Android.mk | 76 *.c | 77 78 res/ IME resource (XML, PNG) 79 drawable/ | 80 *.xml | 81 *.png | 82 drawable-hdpi/ | 83 *.png | 84 drawable-ja/ | 85 *.png | 86 drawable-xlarge/ | 87 *.xml | 88 *.png | 89 drawable-xlarge-hdpi/ | 90 *.xml | 91 *.png | 92 drawable-xlarge-land-hdpi/ | 93 *.png | 94 layout/ | 95 *.xml | 96 layout-xlarge/ | 97 *.xml | 98 raw/ | 99 type.ogg | 100 values/ | 101 *.xml | 102 values-ja/ | 103 *.xml | 104 values-land/ | 105 *.xml | 106 values-xlarge/ | 107 *.xml | 108 values-xlarge-land/ | 109 *.xml | 110 values-zh-rCN | 111 *.xml | 112 xml/ | 113 *.xml | 114 xml-land/ | 115 *.xml | 116 xml-xlarge/ | 117 *.xml | 118 119 src/ IME source code (Java) 120 jp/ | 121 co/ | 122 omronsoft/ | 123 openwnn/ | 124 *.java | 125 EN/ | 126 *.java | 127 JAJP/ | 128 *.java | 129 130 ------------------------------------------------------------------------------- 131