jxl.setAttribute("xmlns:dc", NamespaceURI.DUBLIN_CORE);
}
private void convertDates() {
for (Iterator it = ctx.iteratePointers("//@lastConverted|//@start|//@date"); it.hasNext();) {
DOMAttributePointer p = (DOMAttributePointer) it.next();
Attr attribute = (Attr) p.getBaseValue();
try {
Date date = JXL.stringToDate(attribute.getValue());
attribute.setValue(JXL.dateToString(date));
} catch (ParseException e) {
attribute.getParentNode().removeChild(attribute);