Create an instance of this date formatting class @param origFormat the strftime-style formatting string @param locale the locale to use for locale-specific conversions
(String origFormat, Locale locale)
| 114 | * @param locale the locale to use for locale-specific conversions |
| 115 | */ |
| 116 | public Strftime(String origFormat, Locale locale) { |
| 117 | String convertedFormat = convertDateFormat(origFormat); |
| 118 | simpleDateFormat = new SimpleDateFormat(convertedFormat, locale); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Format the date according to the strftime-style string given in the constructor. |
nothing calls this directly
no test coverage detected