Changes between Version 4 and Version 5 of SPELL_CHECK_R0


Ignore:
Timestamp:
05/14/10 11:50:28 (15 years ago)
Author:
boyan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SPELL_CHECK_R0

    v4 v5  
    3636 
    3737== Related == 
    38 None 
     38http://aspell.net/ 
    3939 
    4040== How to demo == 
     
    4242 
    4343= Design = 
    44 ^Describe your design here. 
     44Here is a list of the libraries reviewed: 
     45 
     46== Jazzy == 
     47 * Websites: http://jazzy.sourceforge.net/, http://sourceforge.net/projects/jazzy 
     48 * Licence and code: LGPL, open-source 
     49 * Features: 
     50  * Based on Aspell algorithms (actually was a port of Aspell initially). 
     51  * Dictionaries specified as wordlists (can easily generate them from Aspell dictionaries). 
     52  * Comes with an English dictionary only but can get any of about 90 Aspell dictionaries to work. 
     53  * Can be used on Strings or in a JTextComponent. 
     54 * Documentation: 
     55  * No online docs or support forums (except few threads with no answers on SourceFourge). 
     56  * Relatively good JavaDoc and in-code comments. 
     57 * Internal: 
     58  * Uses event-driven approach (each spelling error is an event containing the misspelled word and a list of suggestions; listeners can be attached to handle the error). 
     59  * Words are passed as a WordTokenizer object constructed from a String. 
     60 
     61no documentation 
     62provides swing ui? 
     63 
     64Suggester Spellcheck - http://www.softcorporation.com/products/spellcheck/, free 
     65 
     66Can provide search suggestions (commercial) 
     67Fast, low-memory 
     68Written in Java 1.2 
     69Better suggestions than jazzy 
     70documentation for advanced (commercial) version only 
     71seems easy to use 
     72supports 9 languages 
     73uses latex/tex indices 
     74single language at a time 
     75 
     76JOrtho - open source 
     77Supports text in JTextPane only 
     78 
     79drugi? 
     80 
    4581 
    4682= Implementation =