}
boolean googleEnabled = ConfigurationManager.getBooleanProperty("google-metadata.enable", false);
if (googleEnabled)
{
// Add Google metadata field names & values
GoogleMetadata gmd = new GoogleMetadata(context, item);
xmlo.output(new Text("\n"), sw);
for (Element e: gmd.disseminateList())
{
xmlo.output(e, sw);
xmlo.output(new Text("\n"), sw);
}
}