Package uk.ac.osswatch.simal.wicket.data

Examples of uk.ac.osswatch.simal.wicket.data.SortableCategoryDataProvider


  private IProject project;

  public CategoryListPanel(String id, String title) throws SimalRepositoryException {
    super(id, title);
    this.categories = SimalRepositoryFactory.getCategoryService().getAll();
    SortableDataProvider<IResource> dataProvider = new SortableCategoryDataProvider(
        this.categories);
    addCategoryList(dataProvider);
    // TODO Here we need a (hidden) addCategoryPanel to satisfy the markup. The context
    // of the page however is not a project so the panel makes no real sense.
    // For generic pages like the CategoryBrowsePage I imagine a different generic
View Full Code Here


  public CategoryListPanel(String id, String title, Set<IDoapCategory> categories, IProject project) {
    super(id, title);
    this.categories = categories;
    this.project = project;
    SortableDataProvider<IResource> dataProvider = new SortableCategoryDataProvider(
        categories);
    addCategoryList(dataProvider);
    addAddDoapResourcePanel(new AddCategoryPanel("addCategoryPanel", this));
  }
View Full Code Here

TOP

Related Classes of uk.ac.osswatch.simal.wicket.data.SortableCategoryDataProvider

Copyright © 2018 www.massapicom. 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.