Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
readme | 2011-02-23 | 922 Bytes | |
rsta_spellchecker_1.5.0_Source.zip | 2011-02-23 | 259.8 kB | |
rsta_spellchecker_1.5.0.zip | 2011-02-23 | 231.0 kB | |
Totals: 3 Items | 491.7 kB | 0 |
SpellChecker 1.5.0 Release Notes -------------------------------- This is a spell checker add-on for RSyntaxTextArea 1.5.0. It should only be used with version 1.5.0 of RSyntaxTextArea (or later versions, if they do not have a newer, corresponding SpellChecker release). Adding spell checking for English (American or British) to RSyntaxTextArea is very easy; just follow the example source in src/org/fife/ui/rsyntaxtextarea/spell/demo/DemoRootPane.java. It basically boils down to the following code: File zip = new File("distfiles/english_dic.zip"); SpellingParser parser = SpellingParser.createEnglishSpellingParser(zip, true); textArea.addParser(parser); More thorough examples can be found at http://fifesoft.com/rsyntaxtextarea. Check out the Examples page. This release renames the Jazzy packages from com.swabunga.* to org.fife.com.swabunga.* to avoid collisions and thus keep tools such as Maven happy.