blob: df0bdded6048ad3fb3245d9eff2d82519aebf165 [file] [log] [blame]
package $packageName$;
public interface DictionaryService {
/**
* Register a dictionary
*
* @param dictionary the dictionary to be added.
*/
public void registerDictionary(Dictionary dictionary);
/**
* Remove a dictionary
*
* @param dictionary the dictionary to be removed.
*/
public void unregisterDictionary(Dictionary dictionary);
/**
* Check for the existence of a word across all dictionaries
*
* @param word the word to be checked.
* @return true if the word is in any dictionary
*/
public boolean check(String word);
}