date = (Date) converted;
else
{
GenericConverterFactory fac = GenericConverterFactory.getCurrentInstance();
if (fac.isConvertible(converted, Date.class))
date = (Date) fac.convert(converted, Date.class);
}
}
// Not a big deal; just means that an invalid value was entered,
// so we'll launch the dialog showing nothing
catch (ConverterException ce)