String exportBannerItem = StringUtils.defaultString(
this.properties.getExportBannerItem(),
"<a href=\"{0}\">{1}</a>");
Anchor anchor = new Anchor(exportHref, this.properties.getExportLabel(currentExportType));
buffer.append(MessageFormat.format(
exportBannerItem,
new Object[]{exportHref, this.properties.getExportLabel(currentExportType)}));
}
}