/** Initializes a tokenizer from from the dictionary file in classpath. */
static public AbstractTokenizer getTokenizer(String language)
{
if (language.equals(AbstractReader.LANG_EN))
return new EnglishTokenizer();
throw new IllegalArgumentException("The requested language '"+language+"' is not currently supported.");
}