* @param country the country ("GB" for Great-Britain or "none" for no country, for example)
* @param leftMin the minimum number of letters before the hyphen
* @param rightMin the minimum number of letters after the hyphen
*/
public HyphenationAuto(String lang, String country, int leftMin, int rightMin) {
hyphenator = new Hyphenator(lang, country, leftMin, rightMin);
}