329330331332333334335336
} XmlElement timestampEl = event.element(WOR_NS, TIMESTAMP_TAG); if (timestampEl == null) return null; String timestamp = timestampEl.requiredText(); DcDate date = DcDate.create(timestamp); return new Date(date.getTimeInMillis()); }
348349350351352353354355
343344345346347348349350