• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1-------------------------------------------------------------------------------
2                              OpenWnn Japnese README
3
4                                   Version 1.3.1
5
6     (C) Copyright OMRON SOFTWARE Co., Ltd. 2008,2009 All Rights Reserved.
7-------------------------------------------------------------------------------
8
91. 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
152. 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
313. 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
494. 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-ja/                          |
83            *.png                             |
84        layout/                               |
85            *.xml                             |
86        raw/                                  |
87            type.ogg                          |
88        values/                               |
89            *.xml                             |
90        values-ja/                            |
91            *.xml                             |
92        values-zh-rCN                         |
93            *.xml                             |
94        xml/                                  |
95            *.xml                             |
96
97    src/                                      IME source code (Java)
98        jp/                                   |
99            co/                               |
100                omronsoft/                    |
101                    openwnn/                  |
102                        *.java                |
103                        EN/                   |
104                            *.java            |
105                        JAJP/                 |
106                            *.java            |
107
108-------------------------------------------------------------------------------
109