Uses of Interface
com.swabunga.spell.engine.SpellDictionary

Packages that use SpellDictionary
com.swabunga.spell.engine   
com.swabunga.spell.event   
com.swabunga.spell.swing   
 

Uses of SpellDictionary in com.swabunga.spell.engine
 

Classes in com.swabunga.spell.engine that implement SpellDictionary
 class GenericSpellDictionary
          The SpellDictionary class holds the instance of the dictionary.
 class SpellDictionaryASpell
          Container for various methods that any SpellDictionary will use.
 class SpellDictionaryCachedDichoDisk
          Yet another SpellDictionary this one is based on Damien Guillaume's Diskbased dictionary but adds a cache to try to improve abit on performance.
 class SpellDictionaryDichoDisk
          Another implementation of SpellDictionary that doesn't cache any words in memory.
 class SpellDictionaryDisk
          An implementation of SpellDictionary that doesn't cache any words in memory.
 class SpellDictionaryHashMap
          The SpellDictionaryHashMap holds the dictionary

This class is thread safe.

 class SpellDictionaryMultiLingual
           
 

Uses of SpellDictionary in com.swabunga.spell.event
 

Methods in com.swabunga.spell.event with parameters of type SpellDictionary
 void SpellChecker.addDictionary(SpellDictionary dictionary)
           
 void SpellChecker.setUserDictionary(SpellDictionary dictionary)
          Set user dictionary (used when a word is added)
 

Constructors in com.swabunga.spell.event with parameters of type SpellDictionary
SpellChecker(SpellDictionary dictionary)
          Constructs the SpellChecker.
SpellChecker(SpellDictionary dictionary, int threshold)
          Constructs the SpellChecker with a threshold
 

Uses of SpellDictionary in com.swabunga.spell.swing
 

Methods in com.swabunga.spell.swing with parameters of type SpellDictionary
 void JTextComponentSpellChecker.setUserDictionary(SpellDictionary dictionary)
          Set user dictionary (used when a word is added)
 

Constructors in com.swabunga.spell.swing with parameters of type SpellDictionary
JTextComponentSpellChecker(SpellDictionary dict)
           
JTextComponentSpellChecker(SpellDictionary dict, SpellDictionary userDict, java.lang.String title)
           
SpellCheckedDocument(SpellDictionary dictionary)