Examples of FeaturedArticle


Examples of org.uned.agonzalo16.bitacora.web.tag.FeaturedArticle

    Collections.sort(totalCount);

    // coger los 5 con m�s comentarios
    List<FeaturedArticle> articles = new ArrayList<FeaturedArticle>(5);
    for (ArticleCount article : totalCount) {
      articles.add(new FeaturedArticle(article.getArticle(), commentDao.countByArticle(article.getArticle())));

      if (articles.size() == 5) {
        break;
      }
    }
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.