258259260261262263264265266267268
} protected Locale locale = null; public void setLocale(String l) { LocaleParser p = new LocaleParser(); if (!p.parse(l)) { locale = new Locale(p.getLanguage(), p.getCountry(), p.getVariant()); store.setValue(LOCALE, getLocaleString()); } }