Examples of CategorySummaryPanel


Examples of uk.ac.osswatch.simal.wicket.panel.CategorySummaryPanel

  }

  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.");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.