super(modelContext, viewContext);
}
protected void populateItem(final ListItem item) {
try {
Quote quote = (Quote) item.getModelObject();
String text = quote.getText();
String source = quote.getSource();
Label quoteTextLabel = new Label("quoteText", text);
item.add(quoteTextLabel);
Label quoteSourceLabel = new Label("quoteSource", source);
item.add(quoteSourceLabel);
} catch (Exception e) {