blob: e0b0a8db080314f411a5bb80123fd5dfe0122a0f [file] [log] [blame]
package $packageName$;
public interface Dictionary {
/**
* Returns the language of the dictionary
*
* @return the language of the dictionary
*/
public String getLanguage();
/**
* Check for the existence of a word in the dictionary
*
* @param word the word to be checked.
* @return true if the word is in the dictionary
*/
public boolean check(String word);
}