308309310311312313314315316
final long millis = Long.parseLong(data.substring(1)); cal.setTimeInMillis(millis); clearFields(cal); return setDate(cal.getTime()); } else { throw new EncodingException(e); } } }
245246247248249250251252
@Override protected LocalDate doRestore(final String data) { try { return parse(data); } catch (final IllegalArgumentException e) { throw new EncodingException(e); } }
241242243244245246247248
@Override protected LocalDateTime doRestore(final String data) { try { return parse(data); } catch (final IllegalArgumentException e) { throw new EncodingException(e); } }
242243244245246247248249
243244245246247248249250
300301302303304305306307308
305306307308309310311312313