}
if (entry.getAuthors() != null) {
List authorList = new LinkedList();
for (Iterator ai = entry.getAuthors().iterator(); ai.hasNext(); ) {
Person person = (Person) ai.next();
authorList.add(Value.getStringValue(person.getName()) );
if (person.getEmail() != null) {
authorList.add(Value.getStringValue( person.getEmail()) );
}
}
map.put(PROPNAME_AUTHOR, new SimpleProperty(authorList));
}