1 11 12 package org.eclipse.jdt.internal.ui.text.spelling.engine; 13 14 import java.util.Locale ; 15 16 import org.eclipse.jdt.ui.PreferenceConstants; 17 18 27 public interface ISpellCheckEngine { 28 29 40 ISpellChecker getSpellChecker() throws IllegalStateException ; 41 42 47 Locale getLocale(); 48 49 54 void registerGlobalDictionary(ISpellDictionary dictionary); 55 56 64 void registerDictionary(Locale locale, ISpellDictionary dictionary); 65 66 72 void shutdown(); 73 74 82 void unregisterDictionary(ISpellDictionary dictionary); 83 84 } 85 | Popular Tags |