xml.startTag(null, "pdashReportArchive");
xml.attribute(null, "version", "1.0");
for (Map.Entry<String, String> e : contentTypeMap.entrySet()) {
xml.startTag(null, "file");
xml.attribute(null, "name", e.getKey());
xml.attribute(null, "contentType", e.getValue());
if (defaultFile.equals(e.getKey()))
xml.attribute(null, "isDefault", "true");
xml.endTag(null, "file");
}