}
private void addDescriptions(StringBuffer buffer, DescriptionSet descriptions)
{
Iterator descIter = descriptions.iterator();
MutableDescription desc = (MutableDescription) descIter.next();
buffer.append("\t<description");
if(desc.getLocale() != null)
{
buffer.append(" xml:lang=\"");
buffer.append(desc.getLocale().getCountry());
buffer.append("\"");
}
buffer.append(">");
buffer.append(desc.getDescription());
buffer.append("</description>\n");
}