"Description", "Version", "Copyright", "Disclaimer",
"ContactInfo", "Authors", "Licenses");
List<DocumentHeader> dhs = dt.getDocumentHeaders();
for (int i = 0; i < dhs.size(); i++) {
DocumentHeader dh = dhs.get(i);
tdvWriter
.writeNext(new String[] {
String.valueOf(i),
dh.getName() == null ? "-" : dh.getName(),
dh.getDescription() == null ? "-" : dh
.getDescription(),
dh.getVersion() == null ? "-" : dh.getVersion(),
dh.getCopyright() == null ? "-" : dh
.getCopyright(),
dh.getDisclaimer() == null ? "-" : dh
.getDisclaimer(),
dh.getContactInfo() == null ? "-" : dh
.getContactInfo(),
dh.getAuthors() == null ? "-" : dh.getAuthors(),
dh.getLicenses() == null ? "-" : dh
.getLicenses() });
allWriter
.writeNext(new String[] {
String.valueOf(i),
dh.getName() == null ? "-" : dh.getName(),
dh.getDescription() == null ? "-" : dh
.getDescription(),
dh.getVersion() == null ? "-" : dh.getVersion(),
dh.getCopyright() == null ? "-" : dh
.getCopyright(),
dh.getDisclaimer() == null ? "-" : dh
.getDisclaimer(),
dh.getContactInfo() == null ? "-" : dh
.getContactInfo(),
dh.getAuthors() == null ? "-" : dh.getAuthors(),
dh.getLicenses() == null ? "-" : dh
.getLicenses() });
}
tdvWriter.close();
} catch (IOException e) {