if(authorsLst == null)
return;
Element authorTop = d.createElement(bcol+entryName);
Element nameList = d.createElement(bcol+"NameList");
for(Iterator<PersonName> iter = authorsLst.iterator(); iter.hasNext();) {
PersonName name = iter.next();
Element person = d.createElement(bcol+"Person");
addField(d, person,"Last",name.getSurname());
addField(d, person,"Middle",name.getMiddlename());
addField(d, person,"First",name.getFirstname());
nameList.appendChild(person);
}
authorTop.appendChild(nameList);
allAuthors.appendChild(authorTop);