Arrays.sort(messages, Util.SORT_BY_MOST_RECENT_DATE);
System.arraycopy(messages, 0, objectsToDisplay, indexToAddNewObjects,
messages.length);
// Set the list field to display the objects gathered in this method
final ObjectListField objectListField = (ObjectListField) _listField;
objectListField.set(objectsToDisplay);
}