* Set the locale for date parsing of listings
*
* @param locale locale to set
*/
public void setLocale(Locale locale) {
noHHmmFormatter1 = new SimpleDateFormat("MMM-dd-yyyy", locale);
noHHmmFormatter2 = new SimpleDateFormat("dd-MMM-yyyy", locale);
noHHmmFormatter = noHHmmFormatter1;
hhmmFormatters = new ArrayList();
hhmmFormatters.add(new SimpleDateFormat("MMM-d-yyyy-HH:mm", locale));
hhmmFormatters.add(new SimpleDateFormat("MMM-dd-yyyy-HH:mm", locale));
hhmmFormatters.add(new SimpleDateFormat("MMM-d-yyyy-H:mm", locale));
hhmmFormatters.add(new SimpleDateFormat("MMM-dd-yyyy-H:mm", locale));
hhmmFormatters.add(new SimpleDateFormat("MMM-dd-yyyy-H.mm", locale));
hhmmFormatters.add(new SimpleDateFormat("dd-MMM-yyyy-HH:mm", locale));
}