// If this context came bundled with a history item, that means the navigation references a
// previous executed request, and we should show the result.
List<HistoryItem> historyItems = context.getHistoryItems();
if (!historyItems.isEmpty()) {
view.showHistoryItem(generateHistoryItemView(Iterables.getLast(historyItems)));
}
detailPane.add(view);
}