Changes between Version 5 and Version 6 of SPELL_CHECK_R0


Ignore:
Timestamp:
05/14/10 13:00:00 (15 years ago)
Author:
boyan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SPELL_CHECK_R0

    v5 v6  
    4646== Jazzy == 
    4747 * Websites: http://jazzy.sourceforge.net/, http://sourceforge.net/projects/jazzy 
    48  * Licence and code: LGPL, open-source 
     48 * License and code: LGPL, open-source 
    4949 * Features: 
    5050  * Based on Aspell algorithms (actually was a port of Aspell initially). 
    51   * Dictionaries specified as wordlists (can easily generate them from Aspell dictionaries). 
     51  * Dictionaries specified as word lists (can easily generate them from Aspell dictionaries). 
    5252  * Comes with an English dictionary only but can get any of about 90 Aspell dictionaries to work. 
    5353  * Can be used on Strings or in a JTextComponent. 
     
    5858  * 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). 
    5959  * Words are passed as a WordTokenizer object constructed from a String. 
     60 * Useful links: 
     61  * http://www.ibm.com/developerworks/java/library/j-jazzy/ 
    6062 
    61 no documentation 
    62 provides swing ui? 
    63  
    64 Suggester Spellcheck - http://www.softcorporation.com/products/spellcheck/, free 
    65  
    66 Can provide search suggestions (commercial) 
    67 Fast, low-memory 
    68 Written in Java 1.2 
    69 Better suggestions than jazzy 
    70 documentation for advanced (commercial) version only 
    71 seems easy to use 
    72 supports 9 languages 
    73 uses latex/tex indices 
    74 single language at a time 
     63== Suggester Spellcheck == 
     64 * Websites: http://www.softcorporation.com/products/suggester/, http://www.softcorporation.com/products/spellcheck/ 
     65 * License and code: Free to use binaries, source is proprietary, no common licence 
     66 * Features: 
     67  * Dictionary compression (up to 2GB in memory). 
     68  * Fast (0.002ms to check a word against the dictionary, 40ms to provide suggestions). 
     69  * Written in Java 1.2. 
     70  * Provides dictionaries for 9 languages. 
     71 * Documentation: 
     72  * No documentation provided with Basic Edition. Advanced and Enterprise versions (which are paid) provide documentation. 
     73  * No access to the code except for some samples. 
     74 * Internal: 
     75  * Uses .ind files (LaTeX processed index data) packed in jars as dictionaries. 
     76  * Has a.class, b.class, etc. in JAR 
    7577 
    7678JOrtho - open source 
    7779Supports text in JTextPane only 
    78  
    79 drugi? 
    80  
    8180 
    8281= Implementation =