Newer
Older
MagnetRON / src / org / ntlab / traceanalyzer / Dictionary.java
Aki Hongo on 3 Mar 2020 438 bytes first commit
package org.ntlab.traceanalyzer;

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);


}