Examples of ReviewListPanel


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
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.