public Feature decorate(Feature feature, KmlEncodingContext context) {
FeatureTemplate template = context.getTemplate();
SimpleFeature sf = context.getCurrentFeature();
String description = null;
try {
description = template.description(sf);
} catch (IOException e) {
String msg = "Error occured processing 'description' template.";
LOGGER.log(Level.WARNING, msg, e);
}