X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellCheckEngine.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellCheckEngine.java index 1720efa..b857bd7 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellCheckEngine.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellCheckEngine.java @@ -27,11 +27,11 @@ public interface ISpellCheckEngine { * appropriate dictionaries. * * @param locale - * The locale to get the spell checker for + * The locale to get the spell checker for * @param store - * The preference store for the spell-checker + * The preference store for the spell-checker * @return A configured instance of a spell checker, or null - * iff no dictionary could be found for that locale + * iff no dictionary could be found for that locale */ ISpellChecker createSpellChecker(Locale locale, IPreferenceStore store); @@ -45,12 +45,13 @@ public interface ISpellCheckEngine { /** * Registers a dictionary for all locales available on the platform. *

- * This call is equivalent to calling registerDictionary(Locale,ISpellDictionary) - * for each of the locales returned by Locale.getAvailableLocales(). + * This call is equivalent to calling + * registerDictionary(Locale,ISpellDictionary) for each of + * the locales returned by Locale.getAvailableLocales(). *

* * @param dictionary - * The dictionary to register + * The dictionary to register */ void registerDictionary(ISpellDictionary dictionary); @@ -58,9 +59,9 @@ public interface ISpellCheckEngine { * Registers a dictionary tuned for the specified locale with this engine. * * @param locale - * The locale to register the dictionary with + * The locale to register the dictionary with * @param dictionary - * The dictionary to register + * The dictionary to register */ void registerDictionary(Locale locale, ISpellDictionary dictionary); @@ -68,20 +69,21 @@ public interface ISpellCheckEngine { * Unloads the spell check engine and its associated components. *

* All registered dictionaries are unloaded and the engine unregisters for - * preference changes. After a new call to getSpellChecker(Locale), - * it registers again for preference changes. The dictionaries perform lazy - * loading, that is to say on the next query they reload their associated - * word lists. + * preference changes. After a new call to + * getSpellChecker(Locale), it registers again for + * preference changes. The dictionaries perform lazy loading, that is to say + * on the next query they reload their associated word lists. */ void unload(); /** * Unregisters a dictionary previously registered either by a call to - * registerDictionary(Locale,ISpellDictionary) or registerDictionary(ISpellDictionary). - * If the dictionary was not registered before, nothing happens. + * registerDictionary(Locale,ISpellDictionary) or + * registerDictionary(ISpellDictionary). If the dictionary + * was not registered before, nothing happens. * * @param dictionary - * The dictionary to unregister + * The dictionary to unregister */ void unregisterDictionary(ISpellDictionary dictionary); }