result.append(MT_SECTION_DIVIDER);
}
for (Object commentObj : entry.getComments()) {
WeblogEntryCommentWrapper comment;
comment = (WeblogEntryCommentWrapper) commentObj;
result.append("COMMENT: \n");
result.append("AUTHOR: ");
result.append(comment.getName());
result.append("\n");
result.append("EMAIL: ");
result.append(comment.getEmail());
result.append("\n");
result.append("URL: ");
result.append(comment.getUrl());
result.append("\n");
result.append("DATE: ");
result.append(MT_DATE_FORMAT.format(comment.getPostTime()));
result.append("\n");
result.append(comment.getContent());
result.append("\n");
result.append(MT_SECTION_DIVIDER);
}