Examples of CategoryListPanel


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

      };
      cancelButton.setDefaultFormProcessing(false);
      add(cancelButton);
      add(new ReleasesPanel("releasepanel", project.getReleases(), rosb));

      CategoryListPanel categoryList = new CategoryListPanel("categoryList",
          "Categories", project.getCategories(), project);
      add(categoryList);

      //this.oses = project.getOSes();
      addRepeatingInputs("OSes", project.getOSes());
View Full Code Here

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

public class CategoryBrowserPage extends BasePage {
  private static final long serialVersionUID = -3418218005629173956L;

  public CategoryBrowserPage() {
    try {
      add(new CategoryListPanel("categoryList", "Categories"));
    } catch (SimalRepositoryException e) {
      UserReportableException error = new UserReportableException(
          "Unable to get categories from the repository",
          CategoryBrowserPage.class, e);
      setResponsePage(new ErrorReportPage(error));
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.