Package uk.ac.osswatch.simal.wicket.panel

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


  } catch (SimalRepositoryException e) {
    add(new Label("simalID", e.getMessage()));
  }
   
    // reviews
    ReviewListPanel reviewList;
  try {
    reviewList = new ReviewListPanel("reviews",
        SimalRepositoryFactory.getReviewService().getReviewsForProject(project));
      reviewList.setOutputMarkupId(true);
  } catch (SimalRepositoryException e) {
    reviewList = null;
  }
    add(reviewList);
   
View Full Code Here

TOP

Related Classes of uk.ac.osswatch.simal.wicket.panel.ReviewListPanel

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.