String author = this.stringMetadata(item, authorField);
String title = this.stringMetadata(item, titleField);
String updated = this.stringMetadata(item, updatedField);
Statement s = new AtomStatement(feedUri, author, title, updated);
this.populateStatement(context, item, s);
return s;
}