}
private void populatePage(IDoapCategory category)
throws SimalException {
if (category != null) {
add(new CategorySummaryPanel("summary", category));
add(new ProjectListPanel("projectList", category.getProjects(), 15));
add(new PersonListPanel("peopleList", "People working in this category", category.getPeople(), 15));
} else {
throw new SimalException("Cannot populate page with null category.");
}