* Show the resulting valid edit
*/
public final void onSubmit()
{
// Construct a copy of the edited comment
final Comment comment = (Comment)getModelObject();
final Comment newComment = new Comment(comment);
// Set date of comment to add
newComment.setDate(new Date());
// Add the component we edited to the list of comments
commentList.add(0, newComment);
// Clear out the text component