Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
readme.txt | 2016-09-17 | 551 Bytes | |
rsta_spellchecker-2.6.0-src.zip | 2016-09-17 | 331.0 kB | |
rsta_spellchecker-2.6.0.zip | 2016-09-17 | 535.2 kB | |
Totals: 3 Items | 866.8 kB | 0 |
See GitHub for release notes: https://github.com/bobbylight/SpellChecker This release is available in Maven: com.fifesoft:spellchecker:2.6.0 Adding spell checking for English (American or British) to RSyntaxTextArea is very easy; just follow the example source in src/main/java/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);