Changes between Version 5 and Version 6 of SPELL_CHECK_R0
- Timestamp:
- 05/14/10 13:00:00 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SPELL_CHECK_R0
v5 v6 46 46 == Jazzy == 47 47 * Websites: http://jazzy.sourceforge.net/, http://sourceforge.net/projects/jazzy 48 * Licen ce and code: LGPL, open-source48 * License and code: LGPL, open-source 49 49 * Features: 50 50 * Based on Aspell algorithms (actually was a port of Aspell initially). 51 * Dictionaries specified as word lists (can easily generate them from Aspell dictionaries).51 * Dictionaries specified as word lists (can easily generate them from Aspell dictionaries). 52 52 * Comes with an English dictionary only but can get any of about 90 Aspell dictionaries to work. 53 53 * Can be used on Strings or in a JTextComponent. … … 58 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 59 * Words are passed as a WordTokenizer object constructed from a String. 60 * Useful links: 61 * http://www.ibm.com/developerworks/java/library/j-jazzy/ 60 62 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 75 77 76 78 JOrtho - open source 77 79 Supports text in JTextPane only 78 79 drugi?80 81 80 82 81 = Implementation =