Home | History | Annotate | only in /packages/inputmethods/OpenWnn
Up to higher level directory
NameDateSize
Android.mk31-Jul-2010340
AndroidManifest.xml31-Jul-20102K
CleanSpec.mk31-Jul-20102.2K
libs/31-Jul-2010
MODULE_LICENSE_APACHE231-Jul-20100
NOTICE31-Jul-201010.1K
README.txt31-Jul-20104.7K
res/31-Jul-2010
src/31-Jul-2010

README.txt

      1 -------------------------------------------------------------------------------
      2                               OpenWnn Japnese README
      3 
      4                                    Version 1.3.5
      5                   
      6      (C) Copyright OMRON SOFTWARE Co., Ltd. 2008,2009 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         layout/                               |
     87             *.xml                             |
     88         raw/                                  |
     89             type.ogg                          |
     90         values/                               |
     91             *.xml                             |
     92         values-ja/                            |
     93             *.xml                             |
     94         values-zh-rCN                         |
     95             *.xml                             |
     96         xml/                                  |
     97             *.xml                             |
     98 
     99     src/                                      IME source code (Java)
    100         jp/                                   |
    101             co/                               |
    102                 omronsoft/                    |
    103                     openwnn/                  |
    104                         *.java                |
    105                         EN/                   |
    106                             *.java            |
    107                         JAJP/                 |
    108                             *.java            |
    109 
    110 -------------------------------------------------------------------------------
    111